mirror of
https://github.com/xxxsf/vue3-h5-template.git
synced 2025-04-05 20:35:49 +08:00
22 lines
429 B
JavaScript
22 lines
429 B
JavaScript
const path = require('path');
|
|
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
|
module.exports = {
|
|
entry: {
|
|
bundle: path.resolve(__dirname, '../src/index.js')
|
|
},
|
|
output: {
|
|
path: path.resolve(__dirname, '../dist'),
|
|
filename: '[name].[hash].js'
|
|
},
|
|
module: {
|
|
rules: [
|
|
|
|
]
|
|
},
|
|
plugins: [
|
|
new HtmlWebpackPlugin({
|
|
template: path.resolve(__dirname, '../index.html')
|
|
})
|
|
]
|
|
};
|