Close #10175
This commit is contained in:
parent
70f6a4808c
commit
16c48307b6
1 changed files with 7 additions and 0 deletions
|
@ -7,6 +7,7 @@ import * as fs from "node:fs";
|
|||
import * as http from "node:http";
|
||||
import Koa from "koa";
|
||||
import Router from "@koa/router";
|
||||
import cors from "@koa/cors";
|
||||
import mount from "koa-mount";
|
||||
import koaLogger from "koa-logger";
|
||||
import * as slow from "koa-slow";
|
||||
|
@ -41,6 +42,12 @@ app.proxy = true;
|
|||
|
||||
app.use(removeTrailingSlash());
|
||||
|
||||
app.use(
|
||||
cors({
|
||||
origin: "*",
|
||||
}),
|
||||
);
|
||||
|
||||
if (!["production", "test"].includes(process.env.NODE_ENV || "")) {
|
||||
// Logger
|
||||
app.use(
|
||||
|
|
Loading…
Reference in a new issue