yarn install
yarn serve
yarn build
yarn test:unit
yarn test:e2e
yarn lint
in vue.config.js:
publicPath: process.env.NODE_ENV === "production" ? "/vue-calculator" : "",
from main branch:
git checkout -b gh-pages
yarn build
git add dist -f
git commit -m "Setup page"
git subtree push --prefix dist origin gh-pages
git branch -D gh-pages
Then follow the setup stes again from main branch