From b66f00246d1302237c1ef371298589444a2423be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Pot=C4=99pa?= Date: Mon, 11 Sep 2023 13:24:42 +0200 Subject: [PATCH] chore(storybook): removed unnecessary variable from config file NO-JIRA (#57) --- .storybook/main.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.storybook/main.ts b/.storybook/main.ts index 78cde339..7ae77431 100644 --- a/.storybook/main.ts +++ b/.storybook/main.ts @@ -19,11 +19,10 @@ const config: StorybookConfig = { autodocs: 'tag', }, core: {}, - async viteFinal(config, { configType }) { + async viteFinal(config) { if (!config.plugins) { config.plugins = []; } - config.plugins.push(tsconfigPaths.default()); return config;