This project template has been set up using the Vue CLI 3 and includes:
- Sass
- CSS Postprocessing
- Babel
- Source Minification
# install dependencies
npm install
# serve with live reloading at localhost:8080
npm run dev
# build for production with transpilation / minification
npm run build
# serve your production build at localhost:5000
npm run serve
If you want to add more features like linting, unit testing or Typescript to your own project, you can do so quite easily via Vue CLI's plugin system. Check out the documentation if you want to know more.
If you want to maintain your own repo based on this boilerplate, you first need to detach it from this repo. Here is what you need to do:
-
edit these files and enter your own project info
- package.json
- README.md
- public/index.html
-
delete LICENSE (and perhaps add your own)
-
reinitialize git
rm -rf .git
git init
git add .
git commit -m "Initial commit"