dev: add build:deploy script
This commit is contained in:
parent
705e4beaa4
commit
4d60d16630
2 changed files with 2 additions and 1 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,3 +1,3 @@
|
||||||
node_modules/
|
node_modules/
|
||||||
.next/
|
.next/
|
||||||
out/
|
/out
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "next dev",
|
"dev": "next dev",
|
||||||
"build": "next build",
|
"build": "next build",
|
||||||
|
"build:deploy": "next build && next export",
|
||||||
"start": "next start",
|
"start": "next start",
|
||||||
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.mdx ."
|
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.mdx ."
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue