aniwatch / src /config /cors.ts
ChinnaRengamani
1
11acfd9
import cors from "cors";
const corsConfig = cors({
origin: "*",
methods: "GET",
credentials: true,
optionsSuccessStatus: 200,
});
export default corsConfig;