Boilerplate template for the creation of static websites with TypeScript, SCSS, and HTML.
git clone https://github.com/emensch/static-site-template
cd static-site-template
npm install
src/
contains all of your site assets: scripts, styles, etc.
And then...
To run the built-in webpack dev server (with HMR!):
npm start
Your site will be served on http://localhost:1337/
😇
To create a production-ready bundle:
npm run build
To deploy, serve the contents of dist/
from a web server!