index on main: 6c952de improve million application

This commit is contained in:
SethBurkart123
2024-03-24 17:12:07 +11:00
parent e1467782b0
commit 0df5131d2b
3 changed files with 16 additions and 1 deletions
+9
View File
@@ -4,6 +4,7 @@ import million from "million/compiler"
import manifest from './manifest.json'
import react from '@vitejs/plugin-react-swc'
import { sentryVitePlugin } from "@sentry/vite-plugin";
import { join } from 'path'
export default defineConfig({
plugins: [
@@ -34,4 +35,12 @@ export default defineConfig({
port: 5173,
},
},
build: {
minify: false,
rollupOptions: {
input: {
settings: join(__dirname, 'src', 'interface', 'index.html'),
}
},
},
})