mirror of
https://github.com/nuxt/nuxt.git
synced 2025-01-18 17:35:57 +00:00
chore(nitro): avoid optional chaining due to wrangler issue
https://github.com/nuxt/framework/issues/97
This commit is contained in:
parent
5e01305e7d
commit
325c6b8fea
@ -8,7 +8,7 @@ const __VUE_SSR_CONTEXT__ = globalThis.__VUE_SSR_CONTEXT__ = {}
|
||||
export function renderToString (component, context) {
|
||||
return new Promise((resolve, reject) => {
|
||||
_renderer.renderToString(component, context, (err, result) => {
|
||||
const styles = [__VUE_SSR_CONTEXT__, context].map(c => c?._styles?.default).filter(Boolean)
|
||||
const styles = [__VUE_SSR_CONTEXT__, context].map(c => c && c._styles && c._styles.default).filter(Boolean)
|
||||
if (!context._styles) { context._styles = {} }
|
||||
context._styles.default = {
|
||||
ids: [...styles.map(s => s.ids)],
|
||||
|
Loading…
Reference in New Issue
Block a user