In vue 2 you can access the Vue instance Global api from .js files like this:
Vue.prototype.$auth
in Vue 3 you have the app instance, which as far as I know right now only exists within main.js
so if for instance, I have helper.js, how do I access app.config.globalProperties.$auth from the help file?