| 123456789101112131415 |
- import { defineConfig } from "vite";
- import react from "@vitejs/plugin-react";
- import { viteSingleFile } from "vite-plugin-singlefile";
- import tailwindcss from "@tailwindcss/vite";
- export default defineConfig({
- plugins: [react(), tailwindcss(), viteSingleFile()],
- build: {
- outDir: "dist",
- emptyOutDir: false,
- rollupOptions: {
- input: "index.html",
- },
- },
- });
|