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

3
web/.gitignore vendored
View File

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

View File

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