Build as a static site

This commit is contained in:
jahooma 2021-12-01 18:35:04 -06:00
parent 50b8a66e41
commit 5e1dee56a0
2 changed files with 3 additions and 2 deletions

1
web/.gitignore vendored
View File

@ -1,3 +1,4 @@
.DS_Store .DS_Store
.next .next
node_modules node_modules
out

View File

@ -3,7 +3,7 @@
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "next dev", "dev": "next dev",
"build": "next build", "build": "next build && next export",
"start": "next start", "start": "next start",
"lint": "next lint" "lint": "next lint"
}, },