Ninian
- Static website for herereadthis.com
- Using Webpack4 + ES6 + LESS + PostCSS
- Boilerplate forked from alterebro/simple-webpack-boilerplate
Install
# You will need webpack and webpack-dev-server installed globally
npm install webpack webpack-dev-server -g
git clone https://github.com/herereadthis/ninian.git
cd ninian
# Install dependencies
npm install
Dev
Will run webpack-dev-server
on http://localhost:8090/
# Development
npm run dev
Build
Creates the distributable optimized files on /dist
folder
# Build
npm run build
# build is in dist folder
cd dist
# Will run static site on http://localhost:8092/
python -m SimpleHTTPServer 8092