Hi again, hope this is the right place to ask this.
I am using better-auth + drizzle in my Nuxt 4 app. My auth is in /server/utils/auth.ts and uses useRuntimeConfig to get e.g. secrets for Azure Authentication (Client ID, etc.)
I get the error that useRuntimeConfig is not defined, obviously, since it needs to be run as a Nuxt app to be imported.
My question is: What would be the best practice here? Just use process.env? Or create a wrapper around useRuntimeConfig that provides defaults? Or use a separate config file just for the better-auth cli?