From 2faf2e34331703b3bdea3eb487cb8799c8d65377 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Tue, 19 Sep 2023 18:13:57 +0200 Subject: refactor(build): replace paths aliases with relative paths Using paths aliases starting with "@" can be confusing and can lead to conflict with existings modules. I prefer to use relative paths to avoid extra configuration in tools because of these aliases. --- .storybook/preview.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.storybook/preview.js') diff --git a/.storybook/preview.js b/.storybook/preview.js index 75c1267..ce30b56 100644 --- a/.storybook/preview.js +++ b/.storybook/preview.js @@ -5,7 +5,7 @@ import { useDarkMode } from 'storybook-dark-mode'; import { DocsContainer } from './overrides/docs-container'; import dark from './themes/dark'; import light from './themes/light'; -import '@styles/globals.scss'; +import '../src/styles/globals.scss'; export const parameters = { actions: { argTypesRegex: '^on[A-Z].*' }, -- cgit v1.2.3