cloudcmd/webpack.config.js
2020-07-08 20:04:13 +03:00

14 lines
269 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,
]);