This is the private repository for the website for Live Enhancement Suite.
When you deploy, Netlify will run the parcel build commands and host the dist folder it creates.
Install Node.js, install Parcel globally
npm install -g parcel-bundler
Install these packages in your project, you will need them.
npm install --save-dev node-sass
npm install --save-dev parcel-bundler
npm install --save-dev parcel-plugin-static-files-copy
Use the parcel
command to run Parcel. This will launch a local server that will reload on save. Very handy!
parcel *.html
Use parcel build *.html
to make a dist folder locally. This way you can check if it's correct before you actually deploy.