23 lines
531 B
TypeScript
23 lines
531 B
TypeScript
export const corsConfig = {
|
|
origin: [
|
|
"http://localhost:5173",
|
|
"https://www.placebo.mk",
|
|
"https://placebo.mk",
|
|
"https://imkapi.oblak.solutions",
|
|
// "https://eu-assets.i.posthog.com",
|
|
// "https://app.posthog.com",
|
|
// "https://eu.posthog.com",
|
|
],
|
|
methods: ["GET", "POST", "PUT", "DELETE", "OPTIONS", "PATCH"],
|
|
credentials: true,
|
|
allowedHeaders: [
|
|
"Origin",
|
|
"X-Requested-With",
|
|
"Content-Type",
|
|
"Accept",
|
|
"Authorization",
|
|
"posthog-session-id",
|
|
"ph-session-id",
|
|
],
|
|
};
|