Fix env variables

This commit is contained in:
Kasper Seweryn 2022-02-21 23:23:13 +01:00
parent 873e498031
commit 4ce7386128
No known key found for this signature in database
GPG Key ID: B2BA6FA597595C00
5 changed files with 6 additions and 6 deletions

View File

@ -272,7 +272,7 @@ export default {
// 3. use the current url
const defaultInstanceUrl =
this.$store.state.instance.frontSettings.defaultServerUrl ||
process.env.VUE_APP_INSTANCE_URL || this.$store.getters['instance/defaultUrl']()
import.meta.env.VUE_APP_INSTANCE_URL || this.$store.getters['instance/defaultUrl']()
this.$store.commit('instance/instanceUrl', defaultInstanceUrl)
} else {
// needed to trigger initialization of axios / service worker

View File

@ -590,7 +590,7 @@ export default {
)
},
production () {
return process.env.NODE_ENV === 'production'
return import.meta.env.NODE_ENV === 'production'
}
},
watch: {

View File

@ -134,7 +134,7 @@ export default {
return _.get(this.nodeinfo, 'metadata.library.anonymousCanListen', false)
},
iframeSrc () {
let base = process.env.BASE_URL
let base = import.meta.env.BASE_URL
if (base.startsWith('/')) {
// include hostname/protocol too so that the iframe link is absolute
base = `${window.location.protocol}//${window.location.host}${base}`

View File

@ -4,8 +4,8 @@ import { register } from 'register-service-worker'
import store from './store'
if (process.env.NODE_ENV === 'production') {
register(`${process.env.BASE_URL}service-worker.js`, {
if (import.meta.env.NODE_ENV === 'production') {
register(`${import.meta.env.BASE_URL}service-worker.js`, {
registrationOptions: { scope: '/' },
ready () {
console.log(

View File

@ -20,7 +20,7 @@ export default {
state: {
maxEvents: 200,
frontSettings: {},
instanceUrl: process.env.VUE_APP_INSTANCE_URL,
instanceUrl: import.meta.env.VUE_APP_INSTANCE_URL,
events: [],
knownInstances: [],
nodeinfo: null,