webpack.base.conf.js
2.64 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
const path = require('path');
const ExtractTextPlugin = require('extract-text-webpack-plugin');
const FriendlyErrorsPlugin = require('friendly-errors-webpack-plugin');
const postcssConfig = require('./postcss.config.js');
const isProd = process.env.NODE_ENV === 'production';
module.exports = {
output: {
filename: 'static/js/[name].[chunkhash].js',
path: path.resolve(__dirname, '../bundle'),
chunkFilename: 'static/js/[name].[chunkhash].js',
publicPath: '/'
},
devtool: isProd ? '#source-map' : '#cheap-module-source-map',
resolve: {
extensions: ['.js', '.vue', '.json'],
modules: [
path.join(__dirname, '../src'),
path.join(__dirname, '../src/statics/scss'),
'node_modules'
]
},
module: {
rules: [
{
test: /\.js$/,
loader: ['babel-loader'],
exclude: /node_modules/
}, {
test: /\.vue$/,
loader: 'vue-loader',
options: {
loaders: {
css: ExtractTextPlugin.extract({
use: 'css-loader',
fallback: 'vue-style-loader' // <- 这是vue-loader的依赖,所以如果使用npm3,则不需要显式安装
}),
},
postcss: {
plugins: postcssConfig(),
opetions: {
sourceMap: true
}
}
}
}, {
test: /\.scss$/,
loader: ExtractTextPlugin.extract({
use: {
loader: 'postcss-loader',
options: {
plugins: postcssConfig()
}
},
fallback: 'vue-style-loader'
})
}, {
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: 'static/img/[name].[chunkhash].[ext]'
}
}, {
test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: 'static/fonts/[name].[chunkhash].[ext]'
}
},
]
},
plugins: [
new ExtractTextPlugin({
filename: 'static/css/[name].[chunkhash].css'
}),
new FriendlyErrorsPlugin()
]
};