mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-25 23:22:02 +00:00
refactor(nuxt)!: fix typo for NuxtRenderHTMLContext.bodyPrepend
(#8712)
This commit is contained in:
parent
2376c1147f
commit
b60f1364c5
@ -21,7 +21,7 @@ export interface NuxtRenderHTMLContext {
|
|||||||
htmlAttrs: string[]
|
htmlAttrs: string[]
|
||||||
head: string[]
|
head: string[]
|
||||||
bodyAttrs: string[]
|
bodyAttrs: string[]
|
||||||
bodyPreprend: string[]
|
bodyPrepend: string[]
|
||||||
body: string[]
|
body: string[]
|
||||||
bodyAppend: string[]
|
bodyAppend: string[]
|
||||||
}
|
}
|
||||||
@ -223,7 +223,7 @@ export default defineRenderHandler(async (event) => {
|
|||||||
ssrContext.styles
|
ssrContext.styles
|
||||||
]),
|
]),
|
||||||
bodyAttrs: normalizeChunks([renderedMeta.bodyAttrs!]),
|
bodyAttrs: normalizeChunks([renderedMeta.bodyAttrs!]),
|
||||||
bodyPreprend: normalizeChunks([
|
bodyPrepend: normalizeChunks([
|
||||||
renderedMeta.bodyScriptsPrepend,
|
renderedMeta.bodyScriptsPrepend,
|
||||||
ssrContext.teleports?.body
|
ssrContext.teleports?.body
|
||||||
]),
|
]),
|
||||||
@ -288,7 +288,7 @@ function renderHTMLDocument (html: NuxtRenderHTMLContext) {
|
|||||||
return `<!DOCTYPE html>
|
return `<!DOCTYPE html>
|
||||||
<html ${joinAttrs(html.htmlAttrs)}>
|
<html ${joinAttrs(html.htmlAttrs)}>
|
||||||
<head>${joinTags(html.head)}</head>
|
<head>${joinTags(html.head)}</head>
|
||||||
<body ${joinAttrs(html.bodyAttrs)}>${joinTags(html.bodyPreprend)}${joinTags(html.body)}${joinTags(html.bodyAppend)}</body>
|
<body ${joinAttrs(html.bodyAttrs)}>${joinTags(html.bodyPrepend)}${joinTags(html.body)}${joinTags(html.bodyAppend)}</body>
|
||||||
</html>`
|
</html>`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user