Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 655 Bytes

File metadata and controls

41 lines (27 loc) · 655 Bytes

🎓 Intro to Vue.js Course

Learning Vue with Parcel and Yarn

Getting Started

  1. Install the package dependencies

    yarn install
  2. Start the development server while watching for changes

    yarn start
  3. Build for production with minification and concatenation of files

    yarn build

Extra Helper Scripts

  1. Clean the development output folder

    yarn clean:dev
  2. Clean the production build folder

    yarn clean:build