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 cbda6c1 commit ed9239aCopy full SHA for ed9239a
packages/vite-plugin-monkey/src/node/plugins/buildBundle.ts
@@ -85,7 +85,7 @@ export const buildBundleFactory = (
85
}
86
codes.push(`import '${cssModuleEntryId}';`);
87
88
- codes.push(...e.map((c) => `import '${c.fileName}';`));
+ codes.push(...e.map((c) => `import './${c.fileName}';`));
89
return codes.join('\n');
90
})();
91
0 commit comments