2024-03-06 18:31:06 +01:00
|
|
|
import { defineConfig } from 'histoire'
|
|
|
|
import { HstSvelte } from '@histoire/plugin-svelte'
|
|
|
|
|
|
|
|
export default defineConfig({
|
2024-04-24 19:11:00 +02:00
|
|
|
setupFile: '/src/histoire.setup.ts',
|
|
|
|
storyMatch: [
|
|
|
|
'./src/lib/**/*.story.svelte',
|
|
|
|
],
|
2024-03-06 18:31:06 +01:00
|
|
|
plugins: [
|
|
|
|
HstSvelte(),
|
|
|
|
],
|
|
|
|
})
|