12 lines
237 B
JavaScript
12 lines
237 B
JavaScript
|
|
const merge = require('webpack-merge');
|
||
|
|
const {
|
||
|
|
CleanWebpackPlugin
|
||
|
|
} = require('clean-webpack-plugin');
|
||
|
|
const common = require('./webpack.common.js');
|
||
|
|
|
||
|
|
module.exports = merge(common, {
|
||
|
|
plugins: [
|
||
|
|
new CleanWebpackPlugin()
|
||
|
|
]
|
||
|
|
});
|