mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-05 22:43:07 +02:00
11 lines
181 B
TypeScript
11 lines
181 B
TypeScript
import { defineConfig } from 'vite'
|
|
import react from '@vitejs/plugin-react'
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
port: 5173,
|
|
open: false
|
|
}
|
|
})
|