Skip to content

Commit 20087ed

Browse files
authored
Make path() always absolute in prod (#2000)
1 parent bb63bb3 commit 20087ed

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
@@ -14,7 +14,7 @@ export function getSsrProdManifest() {
1414
if (!viteManifestEntry)
1515
throw new Error(`No entry found in vite manifest for '${id}'`);
1616

17-
return viteManifestEntry.file;
17+
return join("/", viteManifestEntry.file);
1818
},
1919
async getAssets(id) {
2020
if (id.startsWith("./")) id = id.slice(2);

0 commit comments

Comments
 (0)