-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathwebpack.config.js
91 lines (87 loc) · 2.16 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
const path = require('path')
const webpack = require('webpack')
const UglifyJsPlugin = require('uglifyjs-webpack-plugin')
const VueLoaderPlugin = require('vue-loader/lib/plugin')
const OptimizeCssAssetsPlugin = require('optimize-css-assets-webpack-plugin')
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer')
const ImportHttpWebpackPlugin = require('import-http/webpack')
const { analysis } = require('yargs').argv
const buildPath = ''
const webpackConfig = {
mode: process.env.NODE_ENV,
entry: {
app: './src/index.js'
},
output: {
filename: buildPath + 'index.js',
chunkFilename: buildPath + 'js/' + '[name].[chunkhash].js',
path: path.resolve(__dirname, 'dist'),
library: 'ImagePreview',
libraryTarget: 'umd',
umdNamedDefine: true
},
resolve: {
extensions: ['.js', '.vue', '.css'],
alias: {
'@': path.resolve(__dirname, 'src')
}
},
module: {
rules: [
{
test: /\.vue$/,
use: ['vue-loader']
},
{
test: /\.js/,
exclude: /node_modules/,
use: ['babel-loader']
},
{
test: /\.(css|scss|sass)$/,
use: [
'style-loader',
'css-loader',
'sass-loader'
]
},
{
test: /\.(jpe?g|png|gif)(\?.*)?$/,
use: [
{
loader: 'url-loader',
options: {
limit: 10000,
name: 'static/image/[name].[hash:4].[ext]'
}
}
]
},
{
test: /\.(mp4|webm|ogg|mp3|wav|flac|aac)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: 'static/media/[name].[hash:4].[ext]'
}
},
{
test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: 'static/fonts/[name].[hash:4].[ext]'
}
}
]
},
plugins: [
new VueLoaderPlugin(),
new UglifyJsPlugin(),
new OptimizeCssAssetsPlugin(),
new webpack.NamedModulesPlugin(),
...(analysis ? [new BundleAnalyzerPlugin()] : []),
new ImportHttpWebpackPlugin()
]
}
module.exports = webpackConfig