22 lines
383 B
JavaScript
22 lines
383 B
JavaScript
module.exports = [
|
|
'strapi::logger',
|
|
'strapi::errors',
|
|
'strapi::security',
|
|
{
|
|
name: 'strapi::cors',
|
|
config: {
|
|
origin: [
|
|
'https://gong.gp',
|
|
],
|
|
methods: ['GET', 'POST', 'PUT', 'DELETE'],
|
|
headers: '*',
|
|
},
|
|
},
|
|
'strapi::poweredBy',
|
|
'strapi::query',
|
|
'strapi::body',
|
|
'strapi::session',
|
|
'strapi::favicon',
|
|
'strapi::public',
|
|
];
|