Based on this tutorial.
-
Install Yarn
npm i -g yarn
-
Install dependencies for development
yarn install --production=false
-
Compile project:
-
Dev version:
yarn dev
Compiles files into the
build/debug
folder and runs a dev server (http://localhost:1234) -
Prod version:
yarn build
Compiles production-ready files into the
build/release
folder
-