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 cf1bc3e commit ae7d3afCopy full SHA for ae7d3af
src/prerender.ts
@@ -73,7 +73,7 @@ export async function readSourcesFromFilesystem(filename) {
73
if (!import.meta.prerender) {
74
return null
75
}
76
- const path = join('${runtimeAssetsPath}', filename)
+ const path = join(${JSON.stringify(runtimeAssetsPath)}, filename)
77
const data = await readFile(path, 'utf-8').catch(() => null)
78
return data ? JSON.parse(data) : null
79
0 commit comments