UNPKG
vibe-init
Version:
latest (2.0.1)
2.0.1
2.0.0
1.3.1
1.3.0
1.2.0
1.1.0
1.0.0
Create a new project with good vibes ✨ - A modern full-stack monorepo template
vibe-init
/
templates
/
turbo-react-router
/
apps
/
web
/
vite.config.ts
9 lines
(7 loc)
•
280 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
import
{ reactRouter }
from
"@react-router/dev/vite"
;
import
{ defineConfig }
from
"vite"
;
import
tsconfigPaths
from
"vite-tsconfig-paths"
;
import
tailwindcss
from
"@tailwindcss/vite"
;
export
default
defineConfig
({
plugins
: [
tailwindcss
(),
reactRouter
(),
tsconfigPaths
()], });