fix: use node standalone server instead of next start

output: standalone doesn't support next start — use node .next/standalone/server.js

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-06 18:00:32 -04:00
co-authored by Claude Sonnet 4.6
parent d9e2bab779
commit 540150be33
+2 -2
View File
@@ -20,8 +20,8 @@
"format:write": "prettier --write \"**/*.{ts,tsx,js,jsx,mdx}\" --cache", "format:write": "prettier --write \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"lint": "eslint .", "lint": "eslint .",
"lint:fix": "eslint --fix .", "lint:fix": "eslint --fix .",
"preview": "next build && next start", "preview": "next build && node .next/standalone/server.js",
"start": "next start", "start": "node .next/standalone/server.js",
"typecheck": "tsc --noEmit" "typecheck": "tsc --noEmit"
}, },
"dependencies": { "dependencies": {