mirror of
https://github.com/Xevion/xevion.dev.git
synced 2026-01-31 10:26:52 -06:00
- Implement health check system with caching and singleflight pattern - Add OG image generation via Satori with R2 storage backend - Configure Railway deployment with health check endpoint - Add connection pooling and Unix socket support for Bun SSR - Block external access to internal routes (/internal/*)
21 lines
436 B
JavaScript
21 lines
436 B
JavaScript
import adapter from "svelte-adapter-bun";
|
|
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
preprocess: vitePreprocess(),
|
|
inlineStyleThreshold: 1000,
|
|
kit: {
|
|
adapter: adapter({
|
|
out: "build",
|
|
precompress: false,
|
|
serveAssets: false,
|
|
}),
|
|
alias: {
|
|
$components: "src/lib/components",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|