We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cfc01f commit 60f3891Copy full SHA for 60f3891
1 file changed
src/module.ts
@@ -85,8 +85,8 @@ export default defineNuxtModule<ModuleOptions>({
85
nuxt.options.build.transpile.push('edgedb')
86
87
// Set user model if `auth` is set.
88
- nuxt.options.runtimeConfig ??= {}
89
- nuxt.options.runtimeConfig.edgeDb ??= {
+ ;(nuxt.options.runtimeConfig as any).edgeDb ??= {}
+ ;(nuxt.options.runtimeConfig.app as any).edgeDb ??= {
90
auth: options.auth,
91
identityModel: options.identityModel,
92
}
0 commit comments