We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1115fc5 commit 9723898Copy full SHA for 9723898
1 file changed
src/commands/init.ts
@@ -73,7 +73,10 @@ const runInitCommand = async (options: InitOptions) => {
73
}
74
// Add css path to config
75
config.css ||= [];
76
- config.css.push(`~/${uiConfig.tailwindCSSLocation?.split("app/")[1]}`);
+ const cssPath = uiConfig.tailwindCSSLocation?.split("app/")[1];
77
+ if (!cssPath) {
78
+ config.css.push(`~/${cssPath}`);
79
+ }
80
},
81
});
82
await addTailwindVitePlugin();
0 commit comments