File size: 304 Bytes
c2c8c8d 22adc79 c2c8c8d | 1 2 3 4 5 6 7 8 9 10 | import cors from 'cors';
import { config } from '../config/env.js';
export const corsMiddleware = cors({
origin: config.CLIENT_URL === '*' ? true : config.CLIENT_URL,
methods: ['GET', 'POST', 'PUT', 'DELETE', 'OPTIONS'],
allowedHeaders: ['Content-Type', 'Authorization'],
credentials: true,
});
|