chore: add dev:proxy script and change start port

- Add dev:proxy script using HTTPS_PROXY for proxied local development
- Update start script to run on port 9135
This commit is contained in:
2026-06-15 14:25:26 +08:00
parent ca3adb0f5b
commit a1b595ca14
+2 -1
View File
@@ -4,8 +4,9 @@
"private": true,
"scripts": {
"dev": "next dev",
"dev:proxy": "HTTPS_PROXY=http://127.0.0.1:7891 next dev",
"build": "next build",
"start": "next start",
"start": "next start -p 9135",
"build:start": "npm run build && npm run start",
"lint": "eslint",
"lint:fix": "eslint --fix",