Installation

With node installed, go into the project root directory and run the install command. After finishing the install process, run the build command.

$ node -v
v16.19.1

$ npm -v
9.7.2

$ npm install
$ npm run build

View

Intended distribution files will be generated in dist folder. You can either open the index.html from there, or run the start command.

# If your phone is connected to the same network, you can access the same URL generated by the simple local server.
$ npm run start

Development

In development, run the dev command and the browser will live reload whenever resources are added or updated.

$ npm run dev