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 22d01fa commit 5b0361fCopy full SHA for 5b0361f
packages/cli/templates/template/vite.config.ts
@@ -1,5 +1,6 @@
1
import { defineConfig } from "vite"
2
import react from "@vitejs/plugin-react"
3
+import tailwindcss from "@tailwindcss/vite";
4
5
export default defineConfig({
6
esbuild: {
@@ -12,6 +13,7 @@ export default defineConfig({
12
13
},
14
optimizeDeps: { include: ["react/jsx-runtime"] },
15
plugins: [
- react({})
16
+ react({}),
17
+ tailwindcss()
18
]
19
})
0 commit comments