diff --git a/account/src/index.ts b/account/src/index.ts index 85303d4..64a63b6 100644 --- a/account/src/index.ts +++ b/account/src/index.ts @@ -19,7 +19,7 @@ app.use(express.json()); app.use(express.urlencoded({ extended: true })); app.use(express.static("public")); app.use(cors({ - origin: inProd ? /\.lingdocs\.com$/ : "*", + origin: "*",// inProd ? /\.lingdocs\.com$/ : "*", credentials: true, })); if (inProd) app.set('trust proxy', 1);