SSR Build Commands

Quasar CLI makes it incredibly simple to develop or build the final distributables from your source code.

Developing

$ quasar dev -m ssr

# ..or the longer form:
$ quasar dev --mode ssr

Building for Production

$ quasar build -m ssr

# ..or the longer form:
$ quasar build --mode ssr

If you want a production build with debugging enabled:

$ quasar build -m ssr -d

# ..or the longer form
$ quasar build -m ssr --debug