Skip to content

Commit 5ed5efc

Browse files
committed
fix: prepend missing slash in asset tag href
1 parent f208bd6 commit 5ed5efc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/start/src/server/manifest/prod-ssr-manifest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ function createHtmlTagsForAssets(assets: string[]) {
5757
.map<Asset>((asset) => ({
5858
tag: "link",
5959
attrs: {
60-
href: asset,
60+
href: '/' + asset,
6161
key: asset,
6262
...(asset.endsWith(".css")
6363
? { rel: "stylesheet", fetchPriority: "high" }

0 commit comments

Comments
 (0)