-
Notifications
You must be signed in to change notification settings - Fork 7
/
webpack.config.js
101 lines (94 loc) · 2.27 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
const path = require('path');
const BabiliWebpackPlugin = require('babili-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
module.exports = {
entry: {
'VueFileTree': './src/vue-file-tree.vue'
},
output: {
path: __dirname + '/dist',
filename: 'vue-file-tree.js',
library: 'VueFileTree',
libraryTarget: 'umd',
libraryExport: 'default'
},
devtool: 'sourcemap',
resolve: {
extensions: [ '.js' , '.json' ],
modules: [path.resolve(__dirname, 'src'), 'node_modules']
},
externals: {
'Vue': 'vue'
},
module: {
rules: [
{
test: /\.css$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {
// you can specify a publicPath here
// by default it use publicPath in webpackOptions.output
publicPath: '../'
}
},
"css-loader"
]
},
{
test: /\.html$/,
use: 'vue-html-loader'
},
{
test: /\.vue$/,
loader: 'vue-loader',
options: {
esModule: true,
transformToRequire: {
video: 'src',
source: 'src'
}
}
},
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /node_modules/,
},
{
test: /\.(png|jpe?g|gif|svg|mp4|ico|wav)(\?.*)?$/,
loader: 'file-loader',
options: {
name: '[name]-[hash].[ext]',
outputPath: 'media/',
publicPath: 'bundles/media/'
}
},
// Handles custom fonts. Currently used for icons.
{
test: /\.woff$/,
loader: 'file-loader',
options: {
name: '[name].[ext]',
outputPath: 'fonts/',
publicPath: 'bundles/fonts/'
}
}
]
},
plugins: [
// new BabiliWebpackPlugin(),
new CopyWebpackPlugin([
{ from: 'src/*.css', to: '[name].css'},
{ from: 'src/*.d.ts', to: '[name].ts'}
]),
new MiniCssExtractPlugin({
// Options similar to the same options in webpackOptions.output
// both options are optional
filename: "[name].css",
chunkFilename: "[id].css"
})
]
};