My attempt to set up a project template for a front-end only (static) template.
For now, here are the steps to start a new project with this:
git clone [email protected]:ericbaukhages/static-template --depth 1 <NEW PROJECT>
cd <NEW PROJECT>
rm -rf .git
git init
Then, update the README to just include the below Tool commands.
The commands for the tooling are marked out in package.json
. Here are a few:
yarn build
: Build for productionyarn develop
: Build for developmentyarn watch
: Watch for changes, and run the development buildyarn serve
: Serve locally on http://localhost:8888, with hot reload of development build
Thanks to Daniel W. Robert for an example on how to set up mini-css-extract-plugin
: