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
/
simple-react
/
vite.config.ts
16 lines
(14 loc)
•
266 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { defineConfig }
from
'vite'
import react
from
'@vitejs/plugin-react'
// https://vitejs.dev/config/
export
default
defineConfig
({
plugins
: [
react
()],
server
: {
port
:
3000
,
open
:
true
},
build
: {
outDir
:
'dist'
,
sourcemap
:
true
} })