cloudcmd/webpack.config.js
2023-07-09 12:43:24 +03:00

13 lines
268 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,
]);