Update start script in package.json to use standalone server build for production
This commit is contained in:
parent
66aecbbd74
commit
63cf553144
1 changed files with 1 additions and 1 deletions
|
|
@ -5,7 +5,7 @@
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "next dev",
|
"dev": "next dev",
|
||||||
"build": "next build",
|
"build": "next build",
|
||||||
"start": "next start",
|
"start": "node .next/standalone/server.js",
|
||||||
"lint": "next lint",
|
"lint": "next lint",
|
||||||
"json-server": "json-server --watch db.json --port 3001"
|
"json-server": "json-server --watch db.json --port 3001"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue