Yt2Jelly/vite.config.ts
corenthin-lebreton 45d5343d61 first commit
2026-02-25 23:38:27 +01:00

11 lines
188 B
TypeScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
strictPort: true,
},
})