Files
freeCodeCamp/api/src/utils/allowed-origins.ts
2024-03-15 08:21:05 -05:00

10 lines
291 B
TypeScript

export const allowedOrigins = [
'https://www.freecodecamp.dev',
'https://www.freecodecamp.org',
// pretty sure the rest of these can go?
'https://beta.freecodecamp.dev',
'https://beta.freecodecamp.org',
'https://chinese.freecodecamp.dev',
'https://chinese.freecodecamp.org'
];