This folder contains all the relevant code implementing the frontend for the sample registration and login application. Please follow the following steps in order to set up the repository.
In order to install all dependencies, open a console and type:
npm install
In order to compile and get the server running on developer mode, open a console and type:
npm run serve
NOTE: Alternatively a shortcut npm start
has been added.
In order to compile and minify for production, open a console and type:
npm run build
In order to link and fix files, open a console and type:
npm run lint