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 8ef528b commit b395af9Copy full SHA for b395af9
.storybook/main.ts
@@ -15,6 +15,7 @@ const config: StorybookConfig = {
15
async viteFinal(config) {
16
// Use dynamic import to avoid CJS deprecation warning
17
const { mergeConfig } = await import('vite')
18
+ const { default: tailwindcss } = await import('@tailwindcss/vite')
19
20
// Filter out any plugins that might generate import maps
21
if (config.plugins) {
@@ -39,6 +40,7 @@ const config: StorybookConfig = {
39
40
// Replace plugins entirely to avoid inheritance issues
41
plugins: [
42
// Only include plugins we explicitly need for Storybook
43
+ tailwindcss(),
44
Icons({
45
compiler: 'vue3',
46
customCollections: {
0 commit comments