mirror of
https://github.com/strapi/strapi.git
synced 2025-07-24 17:40:18 +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',
|
|
];
|