修复之前错误配置的端口

This commit is contained in:
exinglang
2026-07-30 16:19:17 +08:00
parent aa1a1240f2
commit dc6468b01c
+2 -2
View File
@@ -71,8 +71,8 @@ admin_app = FastAPI(
# admin 前端独立部署。生产同域(nginx)无需 CORS;本地 next dev 跨域需放行开发源。
_dev_origins = [
"http://localhost:3002",
"http://127.0.0.1:3002",
"http://localhost:3001",
"http://127.0.0.1:3001",
"http://localhost:3000",
"http://127.0.0.1:3000",
]