Skip to content

Commit 4064b1d

Browse files
committed
fix deployment command and add buildlocal in package.json
1 parent 32370dd commit 4064b1d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.env.example

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ NEXT_PUBLIC_CLERK_SIGN_UP_URL=
55
NEXT_PUBLIC_CLERK_AFTER_SIGN_IN_URL=
66
NEXT_PUBLIC_CLERK_AFTER_SIGN_UP_URL=
77
NEXT_PUBLIC_FILESTACK_API_KEY=
8-
NEXT_PUBLIC_ISPRODUCTION=
98
NEXT_PUBLIC_BLOCKCHAIN=
109
NEXT_PUBLIC_ETHEREUM_ADDR1=
1110
NEXT_PUBLIC_ETHEREUM_ADDR2=

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"private": true,
55
"scripts": {
66
"dev": "cp .env.dev .env.local && next dev",
7-
"build": "cp .env.prod .env.local && next build",
7+
"buildlocal": "cp .env.prod .env.local && next build",
8+
"build": "next build",
89
"start": "next start",
910
"lint": "next lint"
1011
},

0 commit comments

Comments
 (0)