mirror of
https://github.com/strapi/strapi.git
synced 2025-07-13 03:51:54 +00:00
33 lines
470 B
JavaScript
Executable File
33 lines
470 B
JavaScript
Executable File
'use strict';
|
|
|
|
/**
|
|
* Built-in hooks (order matters)
|
|
*/
|
|
|
|
module.exports = {
|
|
_config: true,
|
|
_api: true,
|
|
_admin: false,
|
|
responseTime: true,
|
|
waterline: true,
|
|
bodyParser: true,
|
|
session: true,
|
|
passport: true,
|
|
proxy: true,
|
|
ssl: true,
|
|
ip: true,
|
|
cors: true,
|
|
lusca: true,
|
|
favicon: true,
|
|
gzip: true,
|
|
i18n: true,
|
|
cron: true,
|
|
logger: true,
|
|
blueprints: true,
|
|
views: true,
|
|
router: true,
|
|
static: true,
|
|
websockets: true,
|
|
studio: true
|
|
};
|