-
Notifications
You must be signed in to change notification settings - Fork 13
/
vue.config.js
218 lines (211 loc) · 6.23 KB
/
vue.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
// vue.config.js
const fs = require('fs');
const path = require('path');
function resolve(dir) {
return path.resolve(__dirname, dir)
}
const join = path.join
function getEntries(path) {
let files = fs.readdirSync(resolve(path));
const entries = files.reduce((ret, item) => {
const itemPath = join(path, item)
const isDir = fs.statSync(itemPath).isDirectory();
if (isDir) {
ret[item] = resolve(join(itemPath, 'index'))
} else {
const [name] = item.split('.')
ret[name] = resolve(`${itemPath}`)
}
return ret
}, {})
return entries
}
//开发环境配置
const devConfig = {
publicPath: './',
devServer: {
host: '0.0.0.0',
disableHostCheck: true,
hot: true,
open: true,
proxy: {
'/devServer': {
target: 'http://nutui-server.jd.com',
changeOrigin: true,
pathRewrite: {
'^/devServer': ''
}
}
}
},
css: {
loaderOptions: {
// 给 sass-loader 传递选项
// prependData: {
// // @/ 是 src/ 的别名
// // 所以这里假设你有 `src/variables.sass` 这个文件
// // 注意:在 sass-loader v8 中,这个选项名是 "prependData"
// additionalData: `@import "~@/styles/variables.sass"`,
// },
// 默认情况下 `sass` 选项会同时对 `sass` 和 `scss` 语法同时生效
// 因为 `scss` 语法在内部也是由 sass-loader 处理的
// 但是在配置 `prependData` 选项的时候
// `scss` 语法会要求语句结尾必须有分号,`sass` 则要求必须没有分号
// 在这种情况下,我们可以使用 `scss` 选项,对 `scss` 语法进行单独配置
scss: {
additionalData: `@import "~@/styles/variables.scss";@import "~@/sites/assets/styles/variables.scss";`
},
postcss: {
plugins: [
require('autoprefixer')({
// 配置使用 autoprefixer
// browsers: ['last 20 versions'],
overrideBrowserslist: ['last 20 versions'] // 记得这里要把 browsers 改为 overrideBrowserslist,autoprefixer 新版本的写法有变
})
]
},
}
},
pages: {
doc: {
entry: 'src/sites/doc/main.ts',
template: 'src/sites/doc/index.html',
filename: 'index.html',
// template 中的 title 标签需要是 <title><%= htmlWebpackPlugin.options.title %></title>
title: 'NutUI 大促场景组件',
// 在这个页面中包含的块,默认情况下会包含
// 提取出来的通用 chunk 和 vendor chunk。
chunks: ['chunk-vendors', 'chunk-common', 'doc']
},
mobile: {
entry: 'src/sites/mobile/main.ts',
template: 'src/sites/mobile/index.html',
filename: 'demo.html',
// template 中的 title 标签需要是 <title><%= htmlWebpackPlugin.options.title %></title>
title: 'NutUI-Cat',
// 在这个页面中包含的块,默认情况下会包含
// 提取出来的通用 chunk 和 vendor chunk。
chunks: ['chunk-vendors', 'chunk-common', 'mobile']
}
},
configureWebpack: {
optimization: {
minimize: process.env.NODE_ENV === 'production',
splitChunks: {
automaticNameDelimiter: '_'
}
}
},
chainWebpack: config => {
config.module
.rule('md-vue')
.test(/\.md$/)
.use('vue-loader')
.loader('vue-loader')
.end()
.use(path.resolve(__dirname, './loader/md-vue/index.js'))
.loader(path.resolve(__dirname, './loader/md-vue/index.js'))
.end();
config.module
.rule('js')
// .include.add(path.resolve(__dirname,'packages')).end()
.include
.add('/packages')
.end()
.use('babel')
.loader('babel-loader')
.tap(options => {
// 修改它的选项...
return options
})
},
}
//生成环境配置
const buildConfig = {
publicPath: './',
css: {
loaderOptions: {
scss: {
additionalData: `@import "~@/styles/variables.scss";@import "~@/sites/assets/styles/variables.scss";`
},
postcss: {
plugins: [
require('autoprefixer')({
// 配置使用 autoprefixer
// browsers: ['last 20 versions'],
overrideBrowserslist: ['last 20 versions'] // 记得这里要把 browsers 改为 overrideBrowserslist,autoprefixer 新版本的写法有变
})
]
},
},
sourceMap: true,
extract: false
// extract: {
// filename: '[name]/index.css'
// }
},
configureWebpack: {
entry: {
...getEntries('./src/packages')
},
output: {
filename: '[name]/index.js',
library: 'nutcat',
libraryTarget: 'umd',
umdNamedDefine: true // 是否将模块名称作为 AMD 输出的命名空间
},
externals: {
vue: {
root: 'Vue',
commonjs: 'vue',
commonjs2: 'vue',
amd: 'vue'
}
},
optimization: {
minimize: true,
splitChunks: {
automaticNameDelimiter: '_'
}
}
},
chainWebpack: config => {
config.module
.rule('md-vue')
.test(/\.md$/)
.use('vue-loader')
.loader('vue-loader')
.end()
.use(path.resolve(__dirname, './loader/md-vue/index.js'))
.loader(path.resolve(__dirname, './loader/md-vue/index.js'))
.end();
config.module
.rule('js')
.include
.add('/packages')
.end()
.use('babel')
.loader('babel-loader')
.tap(options => {
// 修改它的选项...
return options
})
config.optimization.delete('splitChunks')
config.plugins.delete('copy')
config.plugins.delete('html')
config.plugins.delete('preload')
config.plugins.delete('prefetch')
config.plugins.delete('hmr')
config.entryPoints.delete('app')
config.module
.rule('fonts')
.use('url-loader')
.tap(option => {
option.fallback.options.name = 'static/fonts/[name].[hash:8].[ext]'
return option
})
},
outputDir: 'lib',
productionSourceMap: false,
}
module.exports = process.env.NODE_ENV === 'development' ? devConfig : buildConfig;