Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 464 Bytes

File metadata and controls

16 lines (10 loc) · 464 Bytes

Running locally in development mode

To get started, just clone the repository and run npm install && npm run dev:

npm install
npm run dev

Building and deploying in production

If you wanted to run this site in production, you should install modules then build the site with npm run build and run it with npm start:

npm install
npm run build
npm start

You should run npm run build again any time you make changes to the site.