Update start script in package.json to use standalone server build for production

This commit is contained in:
Mathieu 2025-11-20 17:06:55 +01:00
parent 66aecbbd74
commit 63cf553144

View file

@ -5,7 +5,7 @@
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"start": "node .next/standalone/server.js",
"lint": "next lint",
"json-server": "json-server --watch db.json --port 3001"
},