We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe316be commit 19be918Copy full SHA for 19be918
packages/astro/src/core/build/vite-plugin-ssr.ts
@@ -163,8 +163,8 @@ function buildManifest(
163
for (const pageData of eachServerPageData(internals)) {
164
const scripts: SerializedRouteInfo['scripts'] = [];
165
if (pageData.hoistedScript) {
166
- const hoistedValue = pageData.hoistedScript.value
167
- const value = hoistedValue.endsWith('.js') ? joinBase(hoistedValue) : hoistedValue
+ const hoistedValue = pageData.hoistedScript.value;
+ const value = hoistedValue.endsWith('.js') ? joinBase(hoistedValue) : hoistedValue;
168
scripts.unshift(
169
Object.assign({}, pageData.hoistedScript, {
170
value,
0 commit comments