A simple way to share problems.
The project needs Node.js to be installed on your system. It was tested with version 12 and newer.
-
Clone the repository into a new folder for your new project.
git clone git@github.com:Avanod/frame.git my-project
-
Install needed dependencies
npm install
-
Run webpack
The
dev
command will start a dev server and watch for code changes in JS and SCSS files. Hot reloading is enabled, so that any change will be visible in your browser as you type.npm run dev
For production usage, run the
build
command and everything you need gets packed together into thepublic
directory. You can upload the content to any hosting provider, without further modifications.npm run build