remove vite-plugin-singlefile

This commit is contained in:
Janis
2023-11-12 18:19:14 +01:00
parent 63bef6e11d
commit 86d2eb4c50
3 changed files with 3 additions and 22 deletions

View File

@@ -1,6 +1,5 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react-swc'
import { viteSingleFile } from "vite-plugin-singlefile"
import path from 'path';
// https://vitejs.dev/config/
@@ -21,5 +20,5 @@ export default defineConfig({
outDir: 'dist',
emptyOutDir: true,
},
plugins: [react(), viteSingleFile({ useRecommendedBuildConfig: false })],
plugins: [react()],
})