In my index.ts file I'm configuring my google recaptcha component with the sitekey:
Vue.use(VueReCaptcha, {
siteKey: 'my_redacted_sitekey'
});
this happens before the new Vue({ ... }) statement.
I don't really want the siteKey hardcoded in the index.ts because we would have to redeploy it it would change.
Is there a way to outsource this value to a config file and use it here or is this not possible before the new Vue({}) statement?
Thanks in advance