mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-15 08:33:13 +01:00
52 lines
1.2 KiB
TypeScript
52 lines
1.2 KiB
TypeScript
import "@repo/config-tailwind/styles.css"
|
|
import i18nMessages from "@repo/i18n/translations/en-US.json"
|
|
import { LOCALE_DEFAULT, TIMEZONE } from "@repo/utils/constants"
|
|
import type { Preview } from "@storybook/react"
|
|
import { NextIntlClientProvider } from "next-intl"
|
|
import { ThemeProvider as NextThemeProvider } from "next-themes"
|
|
import React from "react"
|
|
|
|
const preview: Preview = {
|
|
parameters: {
|
|
nextjs: {
|
|
appDirectory: true,
|
|
},
|
|
options: {
|
|
storySort: {
|
|
order: ["Design System", "Layout", "Errors"],
|
|
},
|
|
},
|
|
backgrounds: { disable: true },
|
|
darkMode: {
|
|
darkClass: "dark",
|
|
lightClass: "light",
|
|
classTarget: "html",
|
|
stylePreview: true,
|
|
},
|
|
controls: {
|
|
disableSaveFromUI: true,
|
|
matchers: {
|
|
color: /(background|color)$/i,
|
|
date: /date$/i,
|
|
},
|
|
},
|
|
},
|
|
decorators: [
|
|
(Story) => {
|
|
return (
|
|
<NextThemeProvider enableColorScheme={false}>
|
|
<NextIntlClientProvider
|
|
messages={i18nMessages}
|
|
locale={LOCALE_DEFAULT}
|
|
timeZone={TIMEZONE}
|
|
>
|
|
<Story />
|
|
</NextIntlClientProvider>
|
|
</NextThemeProvider>
|
|
)
|
|
},
|
|
],
|
|
}
|
|
|
|
export default preview
|