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