You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Enable Tailwind CSS either through the interactive CLI or by adding the `--tailwind`flag. This will automatically configure [Tailwind V4](https://tailwindcss.com/).
91
+
Tailwind CSS is always configured by default. `--tailwind`/ `--no-tailwind` are accepted for compatibility but ignored.
Enable Tailwind CSS either through the interactive CLI or by adding the `--tailwind`flag. This will automatically configure [Tailwind V4](https://tailwindcss.com/).
91
+
Tailwind CSS is always configured by default. `--tailwind`/ `--no-tailwind` are accepted for compatibility but ignored.
Enable Tailwind CSS either through the interactive CLI or by adding the `--tailwind`flag. This will automatically configure [Tailwind V4](https://tailwindcss.com/).
91
+
Tailwind CSS is always configured by default. `--tailwind`/ `--no-tailwind` are accepted for compatibility but ignored.
Copy file name to clipboardExpand all lines: packages/cli/src/command-line.ts
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,18 @@ export function validateLegacyCreateFlags(cliOptions: CliOptions): {
37
37
)
38
38
}
39
39
40
+
if(cliOptions.tailwind===true){
41
+
warnings.push(
42
+
'The --tailwind flag is deprecated and ignored. Tailwind is always enabled in TanStack Start scaffolds.',
43
+
)
44
+
}
45
+
46
+
if(cliOptions.tailwind===false){
47
+
warnings.push(
48
+
'The --no-tailwind flag is deprecated and ignored. Tailwind opt-out is intentionally unsupported to keep add-on permutations maintainable; remove Tailwind after scaffolding if needed.',
0 commit comments