Skip to content

Latest commit

 

History

History
55 lines (32 loc) · 946 Bytes

usage.md

File metadata and controls

55 lines (32 loc) · 946 Bytes

Usage

How to run the app locally

Run

Compile and start a hot-reloading dev server.

$ yarn start

Open in the browser:

Build

Compile and minify for production.

$ yarn build

Now you can view the output in the unversioned dist directory.

Lint and format

Detect errors and warnings and fix where possible.

$ yarn lint:fix

Run checks but do not fix up. Warnings will pass, but any errors will cause an error exit status - this is useful for a CI/CD flow.

$ yarn lint:check

Customize

See Configuration Reference.

In order to serve on a subpath on GH Pages, the project name is set as a subpath in vue.config.js. See the Vue config docs.

Optionally add this to .gitignore. This is based on the Vue CLI quickstart.

.env.local
.env.*.local