forked from bcgov/business-filings-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvue.config.js
57 lines (56 loc) · 1.74 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
const webpack = require('webpack')
const fs = require('fs')
const packageJson = fs.readFileSync('./package.json')
const appName = JSON.parse(packageJson).appName
const appVersion = JSON.parse(packageJson).version
const sbcName = JSON.parse(packageJson).sbcName
const sbcVersion = JSON.parse(packageJson).dependencies['sbc-common-components']
const aboutText1 = (appName && appVersion) ? `${appName} v${appVersion}` : ''
const aboutText2 = (sbcName && sbcVersion) ? `${sbcName} v${sbcVersion}` : ''
module.exports = {
configureWebpack: {
plugins: [
new webpack.DefinePlugin({
'process.env': {
ABOUT_TEXT:
(aboutText1 && aboutText2) ? `"${aboutText1}<br>${aboutText2}"`
: aboutText1 ? `"${aboutText1}"`
: aboutText2 ? `"${aboutText2}"`
: ''
}
})
],
devtool: 'source-map'
},
transpileDependencies: [
'vue-plugin-helper-decorator',
'vuetify'
],
publicPath: `/${process.env.VUE_APP_PATH}`,
pwa: {
workboxPluginMode: 'InjectManifest',
workboxOptions: {
swSrc: 'src/service-worker.js',
// skip precaching json files such as configs
exclude: [/\.json$/]
}
},
devServer: {
proxy: {
// this is needed to prevent a CORS error when running locally
'/local-keycloak-config-url/*': {
target: 'https://dev.bcregistry.ca/business/config/kc/',
pathRewrite: {
'/local-keycloak-config-url': ''
}
},
// this is needed to avoid a PAYBC Not Found error when running locally
'/status/PAYBC': {
target: 'https://status-api-dev.apps.silver.devops.gov.bc.ca/api/v1/status/PAYBC',
pathRewrite: {
'/status/PAYBC': ''
}
}
}
}
}