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-bundlerInstall these packages in your project, you will need them.
npm install --save-dev node-sassnpm install --save-dev parcel-bundlernpm install --save-dev parcel-plugin-static-files-copyUse the parcel command to run Parcel. This will launch a local server that will reload on save. Very handy!
parcel *.htmlUse parcel build *.html to make a dist folder locally. This way you can check if it's correct before you actually deploy.