Stories were throwing without AuthModal/CreateFlow providers, autodocs was a no-op, and several DS/create-flow screens had no stories.
14 lines
339 B
JavaScript
14 lines
339 B
JavaScript
/** @type { import('@storybook/nextjs').StorybookConfig } */
|
|
module.exports = {
|
|
stories: [
|
|
"../stories/**/*.mdx",
|
|
"../stories/**/*.stories.@(js|jsx|mjs|ts|tsx)",
|
|
],
|
|
addons: ["@storybook/addon-docs", "@storybook/addon-a11y"],
|
|
framework: {
|
|
name: "@storybook/nextjs",
|
|
options: {},
|
|
},
|
|
staticDirs: ["../public"],
|
|
};
|