How to create a vanilla headless site
- Create your HTML, CSS, JS website locally
- Initialize a package.json with
npm init -y - Install https://www.npmjs.com/package/http-server with
npm i http-server - Add an empty build script and a start script with
http-server ./( see package.json file) - push changes to remote repository