新增用户管理页面

This commit is contained in:
Stev_Wang
2026-01-04 21:04:30 +08:00
parent 93aae460af
commit 36934dbb7e
15 changed files with 1363 additions and 12 deletions

View File

@@ -11,7 +11,7 @@ const app: Express = express();
const PORT = process.env.PORT || 3000;
app.use(cors({
origin: process.env.CORS_ORIGIN || 'http://localhost:5173',
origin: ['http://localhost:5173', 'http://localhost:5174'],
credentials: true
}));