-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvue.config.js
More file actions
33 lines (33 loc) · 920 Bytes
/
vue.config.js
File metadata and controls
33 lines (33 loc) · 920 Bytes
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
// vue.config.js
// module.exports = {
// publicPath: "/dashboard/", //打包后部署在一个子路径上http:xxx/m/
// productionSourceMap: false,
// devServer: {
// proxy: "https://logboard-dia.numbersprotocol.io/", //测试或正式环境域名和端口号
// },
// };
module.exports = {
outputDir: 'dist',
publicPath: '/',
pluginOptions: {
s3Deploy: {
registry: undefined,
overrideEndpoint: false,
region: 'us-east-1',
bucket: 'logboard-frontend',
createBucket: false,
staticHosting: true,
staticIndexPage: 'index.html',
staticErrorPage: 'index.html',
assetPath: 'dist',
assetMatch: '**',
deployPath: '/',
acl: 'public-read',
pwa: false,
enableCloudfront: true,
cloudfrontId: 'E6ZOEJYF4MFVN',
pluginVersion: '4.0.0-rc3',
uploadConcurrency: 5
}
}
}