mirror of
https://github.com/xxxsf/vue3-h5-template.git
synced 2025-04-05 20:35:49 +08:00
19 lines
446 B
JavaScript
19 lines
446 B
JavaScript
const merge = require('webpack-merge');
|
|
const CleanWebpackPlugin = require('clean-webpack-plugin');
|
|
const path = require('path');
|
|
const baseConfig = require('./webpack.base.conf');
|
|
module.exports = merge(baseConfig, {
|
|
mode: 'production',
|
|
devtool: 'source-map',
|
|
module: {
|
|
rules: []
|
|
},
|
|
plugins: [
|
|
new CleanWebpackPlugin(['dist/'], {
|
|
root: path.resolve(__dirname, '../'),
|
|
verbose: true,
|
|
dry: false
|
|
})
|
|
]
|
|
});
|