mirror of
https://github.com/xsf0105/vue3-h5-template.git
synced 2025-04-06 04:00:04 +08:00
56 lines
1.2 KiB
JavaScript
56 lines
1.2 KiB
JavaScript
const path = require('path');
|
|
const HtmlWebpackPlugin = require('html-webpack-plugin');
|
|
const AutoDllPlugin = require('autodll-webpack-plugin');
|
|
const VueLoaderPlugin = require('vue-loader/lib/plugin');
|
|
|
|
module.exports = {
|
|
entry: {
|
|
bundle: path.resolve(__dirname, '../src/index.js')
|
|
},
|
|
output: {
|
|
path: path.resolve(__dirname, '../dist'),
|
|
filename: '[name].[hash].js'
|
|
},
|
|
resolve: {
|
|
extensions: ['*', '.js', '.json', '.vue'],
|
|
alias: {
|
|
'vue$': 'vue/dist/vue.esm.js',
|
|
'@': path.resolve(__dirname, '../src'),
|
|
}
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.vue$/,
|
|
loader: 'vue-loader'
|
|
},
|
|
{
|
|
test: /\.js$/,
|
|
use: 'babel-loader',
|
|
exclude: /node_modules/
|
|
},
|
|
{
|
|
test: /\.css$/,
|
|
use: ['vue-style-loader', 'css-loader']
|
|
}
|
|
]
|
|
},
|
|
plugins: [
|
|
new HtmlWebpackPlugin({
|
|
template: path.resolve(__dirname, '../index.html')
|
|
}),
|
|
// Dll 优化,需要的时候可以打开
|
|
// new AutoDllPlugin({
|
|
// inject: true, // will inject the DLL bundle to index.html
|
|
// debug: true,
|
|
// filename: '[name]_[hash].js',
|
|
// path: './dll',
|
|
// entry: {
|
|
// vendor: ['vue', 'vue-router']
|
|
// }
|
|
// }),
|
|
new VueLoaderPlugin(),
|
|
// new webpack.optimize.SplitChunksPlugin()
|
|
]
|
|
};
|