UNPKG

321 BJavaScriptView Raw
1'use strict';
2
3module.exports = app => {
4 // make sure clusterAppMock position before securities
5 const index = app.config.coreMiddleware.indexOf('securities');
6 if (index >= 0) {
7 app.config.coreMiddleware.splice(index, 0, 'clusterAppMock');
8 } else {
9 app.config.coreMiddleware.push('clusterAppMock');
10 }
11};