Files

11 lines
200 B
JavaScript
Raw Permalink Normal View History

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
2026-07-15 08:50:49 +02:00
server: {
port: 3006
}
})