mirror of
https://github.com/Xevion/xevion.dev.git
synced 2026-01-31 02:26:38 -06:00
- Add color parameter to seed tags (Rust red, Python blue, etc.) - Reverse tag display order in ProjectCard (flex-row-reverse) - Enable release binary stripping in Cargo.toml - Increase Railway health check timeout to 120s - Remove backup favicon/icon files
28 lines
631 B
JavaScript
28 lines
631 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: 2000,
|
|
kit: {
|
|
adapter: adapter({
|
|
out: "build",
|
|
precompress: false,
|
|
serveAssets: false,
|
|
}),
|
|
alias: {
|
|
$components: "src/lib/components",
|
|
},
|
|
prerender: {
|
|
handleHttpError: ({ path, referrer, message }) => {
|
|
console.log(
|
|
`Prerender error for ${path} (from ${referrer}): ${message}`,
|
|
);
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|