2026-07-15 20:43:01 +02:00
|
|
|
import { defineConfig } from 'vite'
|
|
|
|
|
import react from '@vitejs/plugin-react'
|
2026-07-18 15:20:05 +02:00
|
|
|
import { viteSingleFile } from 'vite-plugin-singlefile'
|
2026-07-15 20:43:01 +02:00
|
|
|
|
|
|
|
|
export default defineConfig({
|
2026-07-18 15:20:05 +02:00
|
|
|
plugins: [react(), viteSingleFile()],
|
2026-07-15 20:43:01 +02:00
|
|
|
})
|