Skip to content

Latest commit

 

History

History
46 lines (35 loc) · 784 Bytes

README.md

File metadata and controls

46 lines (35 loc) · 784 Bytes

vue-ssg-starter-template

This is a simple Vue 3 starter template with SSG, Auto importing, file based routing, and minimal styling.

How to use

  1. Clone this repo and cd into it:
git clone https://github.com/f3ve/vue-ssg-starter-template.git && cd ./vue-ssg-starter-template
  1. Delete the git history
rm -rf .git
  1. Initialize a new git history
git init
  1. Build!

Note: Be sure to review your package.json and update the name, author, description, etc.

Scripts

Run on localhost

pnpm run dev

Build for production

pnpm run build

Run build preview

Note: Be sure you have previously run the build script

pnpm run preview

Installs dependencies

pnpm install