13 lines
300 B
TypeScript
13 lines
300 B
TypeScript
export const corsConfig = {
|
|
credentials: true,
|
|
origin: [
|
|
'https://omnivore.app',
|
|
'https://dev.omnivore.app',
|
|
'https://demo.omnivore.app',
|
|
'https://web-prod.omnivore.app',
|
|
'https://web-dev.omnivore.app',
|
|
'https://web-demo.omnivore.app',
|
|
'http://localhost:3000',
|
|
],
|
|
}
|