-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
89 lines (87 loc) · 2.05 KB
/
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
const jsSourceMap = false;
const cssSourceMap = false;
const px2rem = require('postcss-plugin-px2rem')
module.exports = {
// 自动全局注入的插件,无须import便可直接使用
providePlugin: {
// $: "jquery",
// jquery: "jquery",
// jQuery: "jquery",
// axios: "axios"
},
polyfill: false, // 是否注入babel-polyfill
postCssLoader: {
loader: 'postcss-loader',
options: {
ident: 'postcss',
sourceMap: true,
plugins: (loader) => [
require('postcss-import')({}),
require('postcss-url')({}),
// require('postcss-preset-env')(),
// require('cssnano')(),
require('autoprefixer')(),
px2rem({ remUnit: 750 })
]
},
},
dev: {
assetsSubDirectory: 'static',
assetsPublicPath: '/',
devServer: {
// contentBase: path.join(__dirname, "src"),
clientLogLevel: 'warning',
hot: true,
compress: true, // 开启gzip压缩
host: "0.0.0.0",
port: 3200,
open: false,
overlay: true, // 浏览器全屏覆盖错误
inline: true,
// quiet: true, // 关闭webpack输出日志
proxy: {} // 反向代理table
// publicPath: config.dev.assetsPublicPath
}
},
build: {
assetsPublicPath: './',
assetsSubDirectory: 'static',
jsSourceMap,
cssSourceMap
},
commonRules: [
{
test: /\.(html)$/,
use: {
loader: 'html-loader',
options: {
attrs: ['img:src', 'video:src', 'video:poster', 'source:src']
}
}
},
{
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: '[name].[hash:7].[ext]'
}
},
{
test: /\.(mp4|webm|ogg|mp3|wav|flac|aac)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: '[name].[hash:7].[ext]'
}
},
{
test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: '[name].[hash:7].[ext]'
}
}
]
};