Use Visual Studio Code's built in terminal (powershell) by pressing (CTRL + `), to use the following commands
yarnto install the npm dependencies required for the projectyarn upgrade --latestto upgrade the packages to their latest versionsyarn startto run the a built verision of the codeyarn build:devto compile and build the code in development modeyarn build:prodto compile and build the code in production mode
this will open a new window in Chrome
- or open preferred browser and browse to
http://localhost:3000/build/
To add a dependencies for your app add it to the package.json in the app folder
yarn installto install a new dependencyyarn upgrade --latestto upgrade the packages to their latest versions
- build the app in a configuration by using the command
yarn build:devfor development mode oryarn build:prodfor production mode - use command
yarn startto run the build