customer-portal/app.config.ts
Chris Kruining a502a50176
All checks were successful
Test action / Print hello world (push) Successful in 6m38s
.
2025-09-22 15:33:18 +02:00

27 lines
425 B
TypeScript

import { defineConfig } from "@solidjs/start/config";
export default defineConfig({
vite: {
plugins: [
],
ssr: {
external: [ "bun:sqlite" ],
},
build: {
rollupOptions: {
external: [ "bun", "bun:*" ],
},
},
},
solid: {
babel: {
compact: true,
},
},
server: {
preset: "bun",
prerender: {
routes: ["/", "/sitemaps.xml"],
},
},
});