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 5b95ff0 commit 11651c8Copy full SHA for 11651c8
.storybook/main.ts
@@ -73,7 +73,7 @@ const config = {
73
while ((match = re.exec(dts)) !== null) {
74
const [, name, rel] = match
75
if (!name || !rel) continue
76
- const abs = resolve(buildDir, rel)
+ const abs = resolve(buildDir, rel).replaceAll('\\', '/')
77
lines.push(`export { default as ${name} } from ${JSON.stringify(abs)}`)
78
}
79
return lines.join('\n') || 'export {}'
0 commit comments