dev: add build:deploy script

This commit is contained in:
sup39 2024-02-07 18:40:53 +09:00
parent 705e4beaa4
commit 4d60d16630
Signed by: sup39
GPG Key ID: 111C00916C1641E5
2 changed files with 2 additions and 1 deletions

2
.gitignore vendored
View File

@ -1,3 +1,3 @@
node_modules/
.next/
out/
/out

View File

@ -5,6 +5,7 @@
"scripts": {
"dev": "next dev",
"build": "next build",
"build:deploy": "next build && next export",
"start": "next start",
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.mdx ."
},