From a1b595ca148e4ec3773209e96ea66342b3aa4a70 Mon Sep 17 00:00:00 2001 From: chenhang Date: Mon, 15 Jun 2026 14:25:26 +0800 Subject: [PATCH] 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 --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index e533f485..33a048f4 100644 --- a/package.json +++ b/package.json @@ -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",