Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 653 Bytes

README.md

File metadata and controls

33 lines (27 loc) · 653 Bytes

static-site-template

Boilerplate template for the creation of static websites with TypeScript, SCSS, and HTML.

Installation

git clone https://github.com/emensch/static-site-template
cd static-site-template
npm install

Usage

src/ contains all of your site assets: scripts, styles, etc.

And then...

Development

To run the built-in webpack dev server (with HMR!):

npm start 

Your site will be served on http://localhost:1337/ 😇

Production

To create a production-ready bundle:

npm run build

To deploy, serve the contents of dist/ from a web server!