-
Notifications
You must be signed in to change notification settings - Fork 164
/
Copy pathwebpack.config.js
68 lines (66 loc) · 1.91 KB
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin'); // 动态生成html文件
const MiniCssExtractPlugin = require("mini-css-extract-plugin"); // webpack分离css单独打包
const VueLoaderPlugin = require('vue-loader/lib/plugin')
const {CleanWebpackPlugin} = require('clean-webpack-plugin');
module.exports = (env, options) => {
let entry = './src/lib/index.js';
let output = {
path: path.resolve(__dirname, './dist'),
filename: 'dtree-table.js',
library: 'dtree-table', // 指定的就是你使用require时的模块名
libraryTarget: 'umd', // libraryTarget会生成不同umd的代码,可以只是commonjs标准的,也可以是指amd标准的,也可以只是通过script标签引入的
umdNamedDefine: true // 会对 UMD 的构建过程中的 AMD 模块进行命名。否则就使用匿名的 define
}
if (options.mode === 'development') {
entry = './src/main.js';
} else {
output.publicPath = '/dist/'
}
return {
entry,
output,
module: {
rules: [
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /node_modules/
},
{
test: /\.css$/,
loader: 'vue-style-loader!css-loader'
},
{
test: /\.scss$/,
loader: [
'vue-style-loader',
'css-loader',
'sass-loader'
],
},
{
test:/\.vue$/,
loader: 'vue-loader'
}
]
},
plugins: [
new CleanWebpackPlugin(),
new HtmlWebpackPlugin({
template: path.resolve(__dirname, 'index.html'),
}),
new VueLoaderPlugin(),
new MiniCssExtractPlugin({
filename: "[name].css",
chunkFilename: "[id].css"
})
],
resolve: {
extensions: [ '.js', '.vue', '.scss', '.css'],
alias: {
'@': path.resolve(__dirname, './src'),
}
}
}
}