streamarr/app.config.ts
2025-06-28 19:25:54 +02:00

26 lines
496 B
TypeScript

import { defineConfig } from "@solidjs/start/config";
import solidSvg from "vite-plugin-solid-svg";
import devtools from "solid-devtools/vite";
import { build, fileURLToPath } from "bun";
export default defineConfig({
vite: {
plugins: [
// devtools({
// autoname: true,
// }),
// solidSvg(),
],
},
solid: {
babel: {
compact: true,
},
},
server: {
preset: "bun",
prerender: {
routes: ["/", "/sitemaps.xml"],
},
},
});