Getting Started
- Use this github boilerplate, use it.
- Install dependencies with bellow command.
npm install
- Create .env file, for example see env.example.
- Run development mode.
# run development
npm run dev
#serve generated site on./dist
npm run serve
- Create Content.
# create page
npm run create-page your-page-title
# create post
npm run create-post your-post-title
- Deployment.
# generate static site result in ./dist
# you can create deployment on netlify, github pages, vercel or other static host.
npm run generate