nodes/packages/ui/histoire.config.ts

13 lines
256 B
TypeScript
Raw Normal View History

2024-05-02 18:49:08 +02:00
import { defineConfig } from 'histoire'
import { HstSvelte } from '@histoire/plugin-svelte'
export default defineConfig({
setupFile: '/src/histoire.setup.ts',
storyMatch: [
'./src/lib/**/*.story.svelte',
],
plugins: [
HstSvelte(),
],
})