mirror of
https://github.com/strapi/strapi.git
synced 2025-07-14 04:21:56 +00:00
21 lines
359 B
JavaScript
21 lines
359 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
const responseHandlers = require('./src/response-handlers');
|
||
|
|
||
|
module.exports = [
|
||
|
'strapi::errors',
|
||
|
'strapi::security',
|
||
|
'strapi::cors',
|
||
|
'strapi::poweredBy',
|
||
|
'strapi::logger',
|
||
|
'strapi::request',
|
||
|
{
|
||
|
name: 'strapi::responses',
|
||
|
config: {
|
||
|
handlers: responseHandlers,
|
||
|
},
|
||
|
},
|
||
|
'strapi::favicon',
|
||
|
'strapi::public',
|
||
|
];
|