Quasar CLI with Webpack - @quasar/app-webpack
SSR 构建命令
Quasar CLI 使从源代码开发或构建最终可分发文件变得非常简单。
¥Quasar CLI makes it incredibly simple to develop or build the final distributables from your source code.
开发(Developing)
¥Developing
$ quasar dev -m ssr
# ..or the longer form:
$ quasar dev --mode ssr
content_paste
生产环境构建(Building for Production)
¥Building for Production
$ quasar build -m ssr
# ..or the longer form:
$ quasar build --mode ssr
content_paste
如果你想要一个启用了调试功能的正式版:
¥If you want a production build with debugging enabled:
$ quasar build -m ssr -d
# ..or the longer form
$ quasar build -m ssr --debug
content_paste