how to build diffence version by ENV
-
My project has three env(dev, prod, uat), how the build command support to do that. like ```
build dev
build uat
build prod -
@fringesoft It depends on what you want to do but I think you could take a look at this part of the documentation.
But to answer (partially) your question, I think you can simply run:
quasar build --env=dev
and then access the result inprocess.argv
to do different things depending on the environment