mirror of
https://github.com/v0l/route96.git
synced 2025-06-15 16:03:00 +00:00
9 lines
241 B
TypeScript
9 lines
241 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import { viteSingleFile } from "vite-plugin-singlefile";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react(), viteSingleFile()],
|
|
});
|