1234567891011 |
- 'use strict';
- module.exports = app => {
- const index = app.config.coreMiddleware.indexOf('bodyParser');
- /* istanbul ignore next */
- if (index === -1) {
- app.config.coreMiddleware.push('static');
- } else {
- app.config.coreMiddleware.splice(index, 0, 'static');
- }
- };
|