-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathwebpack.demo.config.js
90 lines (86 loc) · 2.47 KB
/
webpack.demo.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
'use strict';
const path = require('path')
const webpack = require('webpack');
const autoprefixer = require('autoprefixer')
const px2rem = require('postcss-px2rem')
const ExtractTextPlugin = require('extract-text-webpack-plugin')
const HtmlwebpackPlugin = require('html-webpack-plugin')
let entry = {};
let ROOT = path.resolve(__dirname);
var htmlplugin =
new HtmlwebpackPlugin({
filename: `./index.html`,
template: `./demo/demo.html`,
chunks: ['bundle'],
minify: {
collapseWhitespace: true,
minifyJS: true
}
});
module.exports = {
devtool: "source-map",
entry: {
'bundle': path.resolve(ROOT, './demo/index.js')
},
output: {
path: path.resolve(ROOT, './demo/dist'),
filename: '[name].js'
},
plugins: [htmlplugin, new ExtractTextPlugin("style.css"), new webpack.optimize.UglifyJsPlugin({
// 最紧凑的输出
beautify: false,
// 删除所有的注释
comments: false,
compress: {
//supresses warnings, usually from module minification
warnings: false,
// 删除所有的 `console` 语句
// 还可以兼容ie浏览器
drop_console: true,
}
})],
devServer: {
port: 10000,
host: '127.0.0.1',
https: false,
compress: true,
disableHostCheck: true
},
resolve: {
extensions: ['.vue', '.js', '.json']
},
module: {
rules: [{
test: /\.js$/,
use: ['babel-loader'],
exclude: /(node_modules)/
}, {
test: /\.vue$/,
use: [{
loader: 'vue-loader',
options: {
postcss: [require('postcss-bem')(), require('postcss-nested')(), require('postcss-cssnext')(), require('postcss-short'), require('postcss-position')()],
extractCSS: true
}
}],
}, {
test: /\.(css|scss)$/,
use: [{
loader: 'style-loader'
}, {
loader: 'css-loader?modules'
}, {
loader: 'postcss-loader'
}, ]
}, {
test: /\.(png|jpg|gif)(\?t=\d+)?$/,
use: [{
loader: 'url-loader',
options: {
limit: 10000,
name: 'assets/images/[name].[ext]'
}
}]
}]
}
}