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 8545aa4 commit ed3cbfbCopy full SHA for ed3cbfb
1 file changed
packages/rollup-plugin-html/test/utils.ts
@@ -51,7 +51,7 @@ export async function generateTestBundle(build: RollupBuild, outputConfig: Outpu
51
const assets: Record<string, string | Uint8Array> = {};
52
53
for (const file of output) {
54
- const filename = file.fileName;
+ const filename = file.fileName.replaceAll('\\', '/');
55
const formatter = getFormatterFromFilename(filename);
56
if (file.type === 'chunk') {
57
chunks[filename] = formatter ? formatter(file.code) : file.code;
0 commit comments