We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 630c48e commit 216eb3fCopy full SHA for 216eb3f
.storybook/main.ts
@@ -16,7 +16,6 @@ const config: StorybookConfig = {
16
17
viteFinal(config) {
18
return mergeConfig(config, {
19
- plugins: [tsConfigPaths()],
20
css: {
21
preprocessorOptions: {
22
scss: {
@@ -28,6 +27,11 @@ const config: StorybookConfig = {
28
27
esbuild: {
29
jsx: 'automatic',
30
},
+ plugins: [
31
+ tsConfigPaths({
32
+ projects: ['./tsconfig.dev.json', './tsconfig.build.json'],
33
+ }),
34
+ ],
35
});
36
37
};
0 commit comments