From c280a3c1ea7d6ef5900946919a0f42fe28d60e3c Mon Sep 17 00:00:00 2001 From: chenhang Date: Wed, 24 Jun 2026 12:05:27 +0800 Subject: [PATCH] chore(app): add lan dev script --- package.json | 1 + src/app/subscription/components/subscription-screen.module.css | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 1ef85886..9e6bd5a4 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,7 @@ "private": true, "scripts": { "dev": "next dev", + "dev:lan": "next dev -H 0.0.0.0 -p 3000", "build": "next build", "build:deploy": "pnpm install && pnpm run build", "start": "sh -c 'BRANCH=$(git branch --show-current); PORT=${PORT:-}; if [ -z \"$PORT\" ]; then if [ \"$BRANCH\" = \"main\" ]; then PORT=9185; else PORT=9135; fi; fi; next start -p \"$PORT\"'", diff --git a/src/app/subscription/components/subscription-screen.module.css b/src/app/subscription/components/subscription-screen.module.css index ce5e7862..d41cc885 100644 --- a/src/app/subscription/components/subscription-screen.module.css +++ b/src/app/subscription/components/subscription-screen.module.css @@ -2,7 +2,7 @@ display: flex; flex-direction: column; min-height: 100dvh; - background: var(--color-page-background); + background: #fcf3f4; padding: 18 30px 10px; }