-
Notifications
You must be signed in to change notification settings - Fork 398
/
Copy pathcors.ts
39 lines (36 loc) · 997 Bytes
/
cors.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import { clientEnv } from "@cap/env";
export const allowedOrigins = [
clientEnv.NEXT_PUBLIC_WEB_URL,
"http://localhost:3001",
"http://localhost:3000",
"tauri://localhost",
"http://tauri.localhost",
"https://tauri.localhost",
"https://cap.so",
"https://www.cap.so",
"https://cap.link",
"https://www.cap.link",
];
export function getCorsHeaders(origin: string | null, originalOrigin: string) {
return {
"Access-Control-Allow-Origin":
origin && allowedOrigins.includes(origin)
? origin
: allowedOrigins.includes(originalOrigin)
? originalOrigin
: "null",
"Access-Control-Allow-Credentials": "true",
};
}
export function getOptionsHeaders(
origin: string | null,
originalOrigin: string,
methods = "GET, OPTIONS"
) {
return {
...getCorsHeaders(origin, originalOrigin),
"Access-Control-Allow-Methods": methods,
"Access-Control-Allow-Headers":
"Content-Type, Authorization, sentry-trace, baggage",
};
}