Change output directory

This commit is contained in:
Chris Hunt
2023-01-10 13:40:27 +00:00
parent e253251b30
commit 83f3becf2b
4 changed files with 4 additions and 5 deletions

View File

@@ -3,8 +3,8 @@
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"deploy": "next build && touch out/.nojekyll",
"build": "next build && next export -o ../public/",
"deploy": "next build && next export -o ../public/ && touch ../public/.nojekyll",
"start": "next start",
"lint": "next lint"
},