2022-05-12 02:14:45 +04:00
|
|
|
|
|
|
|
|
module.exports = ({ env }) => [
|
2023-12-22 09:18:26 +04:00
|
|
|
'strapi::logger',
|
2022-05-12 02:14:45 +04:00
|
|
|
'strapi::errors',
|
|
|
|
|
'strapi::security',
|
|
|
|
|
{
|
|
|
|
|
name: 'strapi::cors',
|
|
|
|
|
config: {
|
|
|
|
|
origin: ['http://localhost', env('WEBSITE_URL')],
|
2022-01-27 07:12:06 +04:00
|
|
|
}
|
2022-05-12 02:14:45 +04:00
|
|
|
},
|
|
|
|
|
'strapi::poweredBy',
|
|
|
|
|
'strapi::query',
|
|
|
|
|
'strapi::body',
|
|
|
|
|
'strapi::session',
|
|
|
|
|
'strapi::favicon',
|
|
|
|
|
'strapi::public',
|
|
|
|
|
];
|