Change default frontend API port

This commit is contained in:
continuist 2025-06-26 22:24:45 -04:00
parent a59b342b96
commit 52b938ca64

View file

@ -4,13 +4,13 @@
"private": true, "private": true,
"license": "CC-BY-NC-SA-4.0", "license": "CC-BY-NC-SA-4.0",
"scripts": { "scripts": {
"dev": "next dev --turbopack", "dev": "next dev --turbopack --port ${PORT:-3000}",
"dev:fast": "next dev --turbopack --port 3001 --hostname 0.0.0.0", "dev:fast": "next dev --turbopack --hostname 0.0.0.0 --port ${PORT:-3000}",
"dev:analyze": "ANALYZE=true next dev --turbopack", "dev:analyze": "ANALYZE=true next dev --turbopack --port ${PORT:-3000}",
"build": "next build", "build": "next build",
"build:analyze": "ANALYZE=true next build", "build:analyze": "ANALYZE=true next build",
"start": "next start", "start": "next start --port ${PORT:-3000}",
"start:fast": "next start --port 3001 --hostname 0.0.0.0", "start:fast": "next start --hostname 0.0.0.0 --port ${PORT:-3000}",
"lint": "next lint", "lint": "next lint",
"type-check": "tsc --noEmit", "type-check": "tsc --noEmit",
"performance": "npm run build && npm run start:fast", "performance": "npm run build && npm run start:fast",