fix(nuxt): render server errors with `ssr: false` (#28834)

This commit is contained in:
Daniel Roe 2024-09-05 08:56:25 +01:00
parent 468ab2dc0b
commit 3c4979f2c7
No known key found for this signature in database
GPG Key ID: 3714AB03996F442B
1 changed files with 1 additions and 3 deletions

View File

@ -159,9 +159,7 @@ const getSPARenderer = lazyCachedFunction(async () => {
const renderToString = (ssrContext: NuxtSSRContext) => { const renderToString = (ssrContext: NuxtSSRContext) => {
const config = useRuntimeConfig(ssrContext.event) const config = useRuntimeConfig(ssrContext.event)
ssrContext.modules = ssrContext.modules || new Set<string>() ssrContext.modules = ssrContext.modules || new Set<string>()
ssrContext!.payload = { ssrContext.payload.serverRendered = false
serverRendered: false,
}
ssrContext.config = { ssrContext.config = {
public: config.public, public: config.public,
app: config.app, app: config.app,