2023-03-20 15:59:50 +00:00
|
|
|
import { defineConfig } from "histoire";
|
|
|
|
import { HstSvelte } from "@histoire/plugin-svelte";
|
2023-03-21 15:42:09 +00:00
|
|
|
import { HstScreenshot } from "@histoire/plugin-screenshot";
|
2023-03-20 15:59:50 +00:00
|
|
|
|
|
|
|
export default defineConfig({
|
2023-03-21 15:42:09 +00:00
|
|
|
plugins: [
|
|
|
|
HstSvelte(),
|
|
|
|
HstScreenshot({
|
|
|
|
// Options here
|
|
|
|
}),
|
|
|
|
],
|
2023-03-23 14:44:54 +00:00
|
|
|
setupFile: "./src/histoire.setup.js",
|
2023-03-20 15:59:50 +00:00
|
|
|
});
|