-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.config.js
65 lines (64 loc) · 1.68 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
const S3Plugin = require('webpack-s3-plugin')
const AWS = require('aws-sdk')
const assetsDir = `ContentCMS/cms/${formatDate()}`
const path = require('path')
function resolve(dir) {
// 路径可能与你的项目不同
return path.join(__dirname, dir)
}
module.exports = {
publicPath:
process.env.NODE_ENV === 'production'
? 'https://appdl.xxxxxxx.com.cn'
: '/',
assetsDir,
productionSourceMap: false,
configureWebpack: config => {
if (process.env.NODE_ENV === 'production') {
config.plugins.push(
new S3Plugin({
exclude: /.*\.html$/,
s3Options: {
credentials: new AWS.EC2MetadataCredentials({
httpOptions: { timeout: 5000 },
maxRetries: 10,
retryDelayOptions: { base: 200 }
}),
region: 'cn-north-1'
},
s3UploadOptions: {
Bucket: 'bjs-s3-mdm-prod-mkc-mobile-resources'
},
cdnizerOptions: {
defaultCDNBase: 'https://appdl.xxxxxxx.com.cn'
}
})
)
}
},
chainWebpack: config => {
config.plugins.delete('prefetch')
config.module
.rule('svg')
.exclude.add(resolve('src/icons'))
.end()
config.module
.rule('icons')
.test(/\.svg$/)
.include.add(resolve('src/icons'))
.end()
.use('svg-sprite-loader')
.loader('svg-sprite-loader')
.options({
symbolId: 'icon-[name]'
})
.end()
}
}
function formatDate() {
const date = new Date()
const day = ('0' + date.getDate()).slice(-2)
const month = ('0' + (date.getMonth() + 1)).slice(-2)
const year = date.getFullYear()
return `${year}${month}${day}`
}