Skip to content

Commit 5b0361f

Browse files
fix: updated core template vite config file
1 parent 22d01fa commit 5b0361f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/cli/templates/template/vite.config.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { defineConfig } from "vite"
22
import react from "@vitejs/plugin-react"
3+
import tailwindcss from "@tailwindcss/vite";
34

45
export default defineConfig({
56
esbuild: {
@@ -12,6 +13,7 @@ export default defineConfig({
1213
},
1314
optimizeDeps: { include: ["react/jsx-runtime"] },
1415
plugins: [
15-
react({})
16+
react({}),
17+
tailwindcss()
1618
]
1719
})

0 commit comments

Comments
 (0)