webpack.base.conf.js
2.6 KB
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
'use strict';
const webpack = require('webpack');
const _ = require('lodash');
const os = require('os');
const path = require('path');
const HappyPack = require('happypack');
let vueLoaderConfig = require('./vue-loader.conf');
let config = require('./config');
let utils = require('./utils');
let happyThreadPool = HappyPack.ThreadPool({ // eslint-disable-line
size: os.cpus().length
});
function resolve (dir) {
return path.join(__dirname, '../app', dir)
}
module.exports = {
entry: {
app: './app/app.js'
},
output: {
path: config.build.assetsRoot,
filename: utils.assetsPath('js/[name].js'),
chunkFilename: utils.assetsPath('js/[name].js'),
publicPath: process.env.NODE_ENV === 'production'
? config.build.assetsPublicPath
: config.dev.assetsPublicPath
},
resolve: {
extensions: ['.js', '.vue', '.json'],
alias: {
vue$: 'vue/dist/vue.esm.js',
'echarts-lib': 'echarts/lib/echarts',
'echarts-tooltip': 'echarts/lib/component/tooltip',
'echarts-legend': 'echarts/lib/component/legend',
'echarts-line': 'echarts/lib/chart/line',
'echarts-pie': 'echarts/lib/chart/pie',
'echarts-scatter': 'echarts/lib/chart/scatter',
'echarts-map': 'echarts/lib/chart/map'
},
modules: [
resolve(''),
'node_modules'
]
},
module: {
rules: [
{
test: /\.js$/,
loader: 'happypack/loader?id=js',
exclude: /node_modules/
},
{
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: utils.assetsPath('img/[name].[hash:7].[ext]')
}
},
{
test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: utils.assetsPath('fonts/[name].[hash:7].[ext]')
}
},
{
test: /\.vue$/,
loader: 'vue-loader',
options: vueLoaderConfig
}
]
},
plugins: [
new HappyPack({
id: 'js',
threadPool: happyThreadPool,
loaders: ['babel-loader?cacheDirectory=true'],
}),
new HappyPack({
id: 'vue',
threadPool: happyThreadPool,
loaders: ['vue-loader'],
})
]
};