-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.production.js
53 lines (52 loc) · 1.27 KB
/
webpack.config.production.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
const webpack = require('webpack')
const merge = require('webpack-merge')
const StylelintPlugin = require('stylelint-webpack-plugin')
const ExtractTextPlugin = require('extract-text-webpack-plugin')
const base = require('./webpack.config.base')
module.exports = merge(base, {
entry: [
'babel-polyfill',
'./src/main.js'
],
output: {
publicPath: '/public/'
},
plugins: [
new webpack.optimize.UglifyJsPlugin({
sourceMap: false
}),
new StylelintPlugin({
files: [ 'src/stylesheets/*.css', '**/*.vue' ]
}),
new ExtractTextPlugin('stylesheets/styles.css')
],
module: {
rules: [
{
test: /\.css$/,
use: ExtractTextPlugin.extract({
use: [
'css-loader?importLoaders=1&sourceMap=true&minimize=true',
'postcss-loader'
]
})
}, {
test: /\.vue$/,
use: [{
loader: 'vue-loader',
options: {
loaders: {
js: 'babel-loader!eslint-loader',
scss: ExtractTextPlugin.extract({
use: [
'css-loader?importLoaders=1&sourceMap=true&minimize=true',
'postcss-loader'
]
})
}
}
}]
}
]
}
})