Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion code/renderers/svelte/static/PreviewRender.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
<script>
import DecoratorHandler from './DecoratorHandler.svelte';
/*
! DO NOT change this DecoratorHandler import to a relative path, it will break in Vite 8 + Rolldown.
*/
import DecoratorHandler from '@storybook/svelte/internal/DecoratorHandler.svelte';
import { dedent } from 'ts-dedent';

const { name, title, storyFn, showError } = $props();
Expand Down
Loading