@levino/shipyard-base 0.7.3 → 0.7.4-rc-20260218113602
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/astro/layouts/Page.astro +1 -0
- package/package.json +1 -1
package/astro/layouts/Page.astro
CHANGED
|
@@ -107,6 +107,7 @@ const renderScriptAttributes = (script: Script) => {
|
|
|
107
107
|
const attrs = renderScriptAttributes(script)
|
|
108
108
|
return <script is:inline {...attrs}></script>
|
|
109
109
|
})}
|
|
110
|
+
<slot name="head" />
|
|
110
111
|
</head>
|
|
111
112
|
<body class="flex min-h-screen flex-col">
|
|
112
113
|
{config.announcementBar && <AnnouncementBar config={config.announcementBar} />}
|
package/package.json
CHANGED