This repository has been archived on 2026-02-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
serengo/.storybook/preview.ts
2025-09-26 16:06:30 +02:00

15 lines
219 B
TypeScript

import type { Preview } from '@storybook/sveltekit';
const preview: Preview = {
parameters: {
controls: {
matchers: {
color: /(background|color)$/i,
date: /Date$/i
}
}
}
};
export default preview;