2024-09-24 13:49:17 +01:00
|
|
|
import { defineConfig } from "vite";
|
|
|
|
import react from "@vitejs/plugin-react";
|
2024-09-26 10:46:39 +01:00
|
|
|
import { viteSingleFile } from "vite-plugin-singlefile";
|
2024-09-24 13:49:17 +01:00
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
export default defineConfig({
|
|
|
|
plugins: [react(), viteSingleFile()],
|
|
|
|
});
|