cloudcmd/webpack.config.js
2018-04-11 11:31:32 +03:00

14 lines
267 B
JavaScript

'use strict';
const merge = require('webpack-merge');
const htmlConfig = require('./.webpack/html');
const cssConfig = require('./.webpack/css');
const jsConfig = require('./.webpack/js');
module.exports = merge([
jsConfig,
htmlConfig,
cssConfig,
]);