49cbd6178e
Otherwise information is lost. Signed-off-by: André Jaenisch <andre.jaenisch@posteo.de>
21 lines
451 B
TypeScript
21 lines
451 B
TypeScript
import type { Preview } from '@storybook/svelte';
|
|
// See src/routes/+layout.svelte
|
|
// Order is important!
|
|
import '../src/theme.postcss';
|
|
//import '@skeletonlabs/skeleton/styles/skeleton.css';
|
|
import '../src/app.postcss';
|
|
import './fix.css';
|
|
|
|
const preview: Preview = {
|
|
parameters: {
|
|
actions: { argTypesRegex: '^on[A-Z].*' },
|
|
controls: {
|
|
matchers: {
|
|
color: /(background|color)$/i,
|
|
date: /Date$/i
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|
|
export default preview;
|