app.js 279 B

1234567891011
  1. 'use strict';
  2. module.exports = app => {
  3. const index = app.config.coreMiddleware.indexOf('bodyParser');
  4. /* istanbul ignore next */
  5. if (index === -1) {
  6. app.config.coreMiddleware.push('static');
  7. } else {
  8. app.config.coreMiddleware.splice(index, 0, 'static');
  9. }
  10. };