mirror of
https://github.com/immich-app/immich.git
synced 2025-01-06 11:56:46 +01:00
15 lines
265 B
TypeScript
15 lines
265 B
TypeScript
import type { Preview } from '@storybook/svelte';
|
|
import '../src/app.css';
|
|
|
|
const preview: Preview = {
|
|
parameters: {
|
|
controls: {
|
|
matchers: {
|
|
color: /(background|color)$/i,
|
|
date: /Date$/i,
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
export default preview;
|