Variables for the API have been updated

This commit is contained in:
2022-02-16 13:21:35 +01:00
parent 04ad8334ba
commit 519bad5689
10 changed files with 16 additions and 12 deletions

View File

@@ -63,7 +63,7 @@ export default {
name: 'About',
data () {
return {
publicPath: process.env.BASE_URL
publicPath: process.env.VUE_APP_BASE_URL + '/'
}
},
mounted () {

View File

@@ -15,7 +15,7 @@ export default {
name: 'Home',
data () {
return {
publicPath: process.env.BASE_URL,
publicPath: process.env.VUE_APP_BASE_URL + '/',
select_projects: []
}
},

View File

@@ -102,7 +102,7 @@ export default {
categories: {
active: 'all'
},
publicPath: process.env.BASE_URL,
publicPath: process.env.VUE_APP_BASE_URL + '/',
projects: []
}
},