From 924ba44054f7f780089381b8996f1dcf50fe1c76 Mon Sep 17 00:00:00 2001 From: Gabriel Tiburcio Date: Wed, 18 Sep 2024 17:21:29 -0300 Subject: [PATCH] chore: trying to remove remark-gfm dependency to see if gh-pages displays it correctly --- .storybook/main.ts | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.storybook/main.ts b/.storybook/main.ts index 103f71c81..587954d0e 100644 --- a/.storybook/main.ts +++ b/.storybook/main.ts @@ -2,7 +2,7 @@ import type { StorybookConfig } from '@storybook/react-vite' import react from '@vitejs/plugin-react' import { PluginOption, Plugin } from 'vite' import { withoutVitePlugins } from '@storybook/builder-vite' -import remarkGfm from 'remark-gfm' +// import remarkGfm from 'remark-gfm' type StorybookVitePlugins = { plugins: (PluginOption[] | Plugin)[] } @@ -18,17 +18,17 @@ const config: StorybookConfig & StorybookVitePlugins = { '@storybook/addon-links', '@storybook/addon-essentials', '@storybook/addon-interactions', - { - name: '@storybook/addon-docs', - options: { - mdxPluginOptions: { - mdxCompileOptions: { - // needed for rendering markdown tables in .mdx - remarkPlugins: [remarkGfm], - }, - }, - }, - }, + // { + // name: '@storybook/addon-docs', + // options: { + // mdxPluginOptions: { + // mdxCompileOptions: { + // // needed for rendering markdown tables in .mdx + // remarkPlugins: [remarkGfm], + // }, + // }, + // }, + // }, ], docs: {