7 lines
141 B
TypeScript
7 lines
141 B
TypeScript
const allowedOrigins = [
|
|
"http://localhost:3000",
|
|
"http://localhost:5173",
|
|
"http://localhost:3001",
|
|
];
|
|
|
|
export default allowedOrigins;
|