2026-07-14 10:10:01 +02:00
|
|
|
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
|
|
|
|
|
}
|
2026-07-14 10:10:01 +02:00
|
|
|
})
|