gitbutler/.storybook/preview.ts

16 lines
287 B
TypeScript
Raw Normal View History

2023-03-27 18:30:09 +03:00
import type { Preview } from '@storybook/svelte';
2023-03-28 11:15:17 +03:00
import '../src/app.postcss';
2023-03-27 18:30:09 +03:00
const preview: Preview = {
parameters: {
actions: { argTypesRegex: '^on[A-Z].*' },
controls: {
matchers: {
color: /(background|color)$/i,
date: /Date$/
}
}
}
};
export default preview;