22 lines
474 B
TypeScript
22 lines
474 B
TypeScript
import type { Preview } from "@kachurun/storybook-solid-vite";
|
|
|
|
import "../src/index.css";
|
|
import "./preview.css";
|
|
|
|
export const preview: Preview = {
|
|
tags: ["autodocs"],
|
|
parameters: {
|
|
docs: { toc: true },
|
|
// automatically create action args for all props that start with "on"
|
|
actions: { argTypesRegex: "^on.*" },
|
|
controls: {
|
|
matchers: {
|
|
color: /(background|color)$/i,
|
|
date: /Date$/,
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
export default preview;
|