You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

22 lines
426 B

const
manifest = require('../manifest');
const plugins = [];
plugins.push(
...(require('./htmlPlugin')),
...(require('./internal')),
require('./caseSensitivePlugin'),
require('./extractPlugin'),
require('./copyPlugin')
);
if (manifest.IS_DEVELOPMENT) {
plugins.push(require('./dashboardPlugin'));
}
if (manifest.IS_PRODUCTION) {
plugins.push(require('./copyPlugin'));
}
module.exports = plugins;