mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
fix(bridge, nuxt3): backward compatibility to access runtime config in client (#4283)
This commit is contained in:
parent
2dadd4f0b3
commit
81bf1c065e
@ -25,7 +25,25 @@ export const useHydration = mock()
|
||||
export const useRuntimeConfig = () => {
|
||||
const nuxtApp = useNuxtApp()
|
||||
if (!nuxtApp.$config) {
|
||||
nuxtApp.$config = reactive(nuxtApp.nuxt2Context.app.$config)
|
||||
const runtimeConfig = reactive(nuxtApp.nuxt2Context.app.$config)
|
||||
const copatibilityConfig = new Proxy(runtimeConfig, {
|
||||
get (target, prop) {
|
||||
if (prop === 'public') {
|
||||
return target.public
|
||||
}
|
||||
return target[prop] ?? target.public[prop]
|
||||
},
|
||||
set (target, prop, value) {
|
||||
if (prop === 'public' || prop === 'app') {
|
||||
return false // Throws TypeError
|
||||
}
|
||||
target[prop] = value
|
||||
target.public[prop] = value
|
||||
return true
|
||||
}
|
||||
})
|
||||
nuxtApp.provide('config', copatibilityConfig)
|
||||
nuxtApp.$config = copatibilityConfig
|
||||
}
|
||||
return nuxtApp.$config as RuntimeConfig
|
||||
}
|
||||
|
@ -127,7 +127,24 @@ export function createNuxtApp (options: CreateOptions) {
|
||||
app: options.ssrContext.runtimeConfig.app
|
||||
}
|
||||
} else {
|
||||
nuxtApp.provide('config', reactive(nuxtApp.payload.config))
|
||||
const runtimeConfig = reactive(nuxtApp.payload.config)
|
||||
const copatibilityConfig = new Proxy(runtimeConfig, {
|
||||
get (target, prop) {
|
||||
if (prop === 'public') {
|
||||
return target.public
|
||||
}
|
||||
return target[prop] ?? target.public[prop]
|
||||
},
|
||||
set (target, prop, value) {
|
||||
if (prop === 'public' || prop === 'app') {
|
||||
return false // Throws TypeError
|
||||
}
|
||||
target[prop] = value
|
||||
target.public[prop] = value
|
||||
return true
|
||||
}
|
||||
})
|
||||
nuxtApp.provide('config', copatibilityConfig)
|
||||
}
|
||||
|
||||
return nuxtApp
|
||||
|
Loading…
Reference in New Issue
Block a user