12 lines
231 B
JavaScript
Executable File
12 lines
231 B
JavaScript
Executable File
const common = require('./webpack.common.cjs');
|
|
const { merge } = require('webpack-merge');
|
|
|
|
|
|
module.exports = merge(common, {
|
|
output: {
|
|
path: __dirname,
|
|
filename: 'bundle.cjs'
|
|
},
|
|
mode: 'production'
|
|
});
|