app/.storybook/preview.js

20 lines
396 B
JavaScript

import { RouterContext } from "next/dist/shared/lib/router-context"; // next 12
export const parameters = {
actions: { argTypesRegex: "^on[A-Z].*" },
controls: {
matchers: {
color: /(background|color)$/i,
date: /Date$/,
},
},
nextRouter: {
Provider: RouterContext.Provider,
asPath: "/",
pathname: "/",
query: {},
route: "/",
push() {}
},
};