12 lines
280 B
JavaScript
12 lines
280 B
JavaScript
var corsOptions = {
|
|
origin: [
|
|
'http://localhost:8080',
|
|
'http://localhost:3000',
|
|
"https://social.emmint.com",
|
|
"https://fellowship.emmint.com",
|
|
"https://aeropi.local",
|
|
],
|
|
credentials: true
|
|
};
|
|
|
|
module.exports = { corsOptions }; |