18 lines
681 B
JavaScript
18 lines
681 B
JavaScript
'use strict'
|
|
module.exports = {
|
|
/*
|
|
* ENV variables used in JS code need to be stringyfied, as they will be replaced in the code, and JS needs quotes
|
|
* around strings
|
|
*/
|
|
VUE_APP_ENABLE_SPELLCHECK: !!process.env.TASKBASE_BASEURL,
|
|
|
|
/*
|
|
* Vars used in HTML templates don't need to be stringyfied, as HTML does not need them to have quotes
|
|
*/
|
|
// vvvv HTML PROPERTIES FROM HERE, NOT STRINGIFIED vvvv
|
|
VUE_APP_FAVICON_32: 'https://skillbox-my-kv-prod.s3-eu-west-1.amazonaws.com/mykv-fav.png',
|
|
VUE_APP_FAVICON_16: 'https://skillbox-my-kv-prod.s3-eu-west-1.amazonaws.com/mykv-fav.png',
|
|
VUE_APP_TITLE: 'myKV'
|
|
// ^^^^ HTML PROPERTIES TO HERE, NOT STRINGIFIED ^^^^
|
|
}
|