2023-05-26 15:58:06 +02:00
|
|
|
import { StorybookConfig } from "@storybook/angular";
|
|
|
|
import TsconfigPathsPlugin from "tsconfig-paths-webpack-plugin";
|
|
|
|
import remarkGfm from "remark-gfm";
|
|
|
|
|
|
|
|
const config: StorybookConfig = {
|
|
|
|
stories: [
|
|
|
|
"../libs/components/src/**/*.mdx",
|
|
|
|
"../libs/components/src/**/*.stories.@(js|jsx|ts|tsx)",
|
|
|
|
"../apps/web/src/**/*.mdx",
|
|
|
|
"../apps/web/src/**/*.stories.@(js|jsx|ts|tsx)",
|
|
|
|
"../bitwarden_license/bit-web/src/**/*.mdx",
|
|
|
|
"../bitwarden_license/bit-web/src/**/*.stories.@(js|jsx|ts|tsx)",
|
|
|
|
],
|
|
|
|
addons: [
|
|
|
|
"@storybook/addon-links",
|
|
|
|
"@storybook/addon-essentials",
|
|
|
|
"@storybook/addon-a11y",
|
2023-08-15 19:25:51 +02:00
|
|
|
"@storybook/addon-designs",
|
2023-05-26 15:58:06 +02:00
|
|
|
{
|
|
|
|
name: "@storybook/addon-docs",
|
|
|
|
options: {
|
|
|
|
mdxPluginOptions: {
|
|
|
|
mdxCompileOptions: {
|
|
|
|
remarkPlugins: [remarkGfm],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
framework: {
|
|
|
|
name: "@storybook/angular",
|
|
|
|
options: {},
|
|
|
|
},
|
|
|
|
core: {
|
|
|
|
disableTelemetry: true,
|
|
|
|
},
|
|
|
|
env: (config) => ({
|
|
|
|
...config,
|
|
|
|
FLAGS: JSON.stringify({
|
|
|
|
secretsManager: true,
|
|
|
|
}),
|
|
|
|
}),
|
|
|
|
webpackFinal: async (config, { configType }) => {
|
|
|
|
if (config.resolve) {
|
|
|
|
config.resolve.plugins = [new TsconfigPathsPlugin()] as any;
|
|
|
|
}
|
|
|
|
return config;
|
|
|
|
},
|
|
|
|
docs: {
|
|
|
|
autodocs: true,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
export default config;
|