Installation
Installation Prerequisites:
Install Node.js and NPM : Download Node.js Recommended Version from the official website https://nodejs.org/en/download/ and install it on your system. NPM comes bundled with Node.js
Install npm packages : Open terminal or command prompt, go to your project root directory and run following command, it will download all the dependencies under node_modules folder. Please wait for it to finish.
npm installRunning Development Server:
Run following command to run dev server, wait for it to finish and once it finishes access http://localhost:8080/ to run your app/project on browser. The app will automatically reload if you make any changes in any of the source file.
npm run serveProduction Building:
Run following command to build the project and wait for it to finish. The build will be stored in the dist/ directory.
npm run buildLast updated