11 lines
208 B
JavaScript
11 lines
208 B
JavaScript
module.exports = {
|
|
cors : {
|
|
"origin": "*",
|
|
"methods": "GET,PUT,POST,DELETE",
|
|
"allowedHeaders" : [
|
|
'Content-Type','Authorization'
|
|
],
|
|
"preflightContinue": false,
|
|
"optionsSuccessStatus": 204
|
|
}
|
|
} |