Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions examples/react/start-basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,14 @@
"zod": "^3.24.2"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.11",
"@types/node": "^22.5.4",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.6.0",
"autoprefixer": "^10.4.20",
"postcss": "^8.5.1",
"tailwindcss": "^3.4.17",
"tailwindcss": "^4.1.11",
"typescript": "^5.7.2",
"vite": "^6.3.5",
"vite-tsconfig-paths": "^5.1.4"
}
}
}
6 changes: 0 additions & 6 deletions examples/react/start-basic/postcss.config.mjs

This file was deleted.

6 changes: 2 additions & 4 deletions examples/react/start-basic/src/styles/app.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@import "tailwindcss";

@layer base {
html {
Expand All @@ -19,4 +17,4 @@
.using-mouse * {
outline: none !important;
}
}
}
4 changes: 0 additions & 4 deletions examples/react/start-basic/tailwind.config.mjs

This file was deleted.

2 changes: 2 additions & 0 deletions examples/react/start-basic/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import tailwindcss from '@tailwindcss/vite'
import { tanstackStart } from '@tanstack/react-start/plugin/vite'
import { defineConfig } from 'vite'
import tsConfigPaths from 'vite-tsconfig-paths'
Expand All @@ -13,5 +14,6 @@ export default defineConfig({
}),
tanstackStart({ customViteReactPlugin: true }),
viteReact(),
tailwindcss(),
],
})