mirror of
https://github.com/Xevion/xevion.dev.git
synced 2026-01-31 04:26:43 -06:00
Just a commit point while I'm testing stuff. Already decided at this point to simplify and revert away from PayloadCMS.
20 lines
381 B
JavaScript
20 lines
381 B
JavaScript
import adapter from "svelte-adapter-bun";
|
|
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
preprocess: vitePreprocess(),
|
|
|
|
kit: {
|
|
adapter: adapter({
|
|
out: "build",
|
|
precompress: false,
|
|
}),
|
|
alias: {
|
|
$components: "src/lib/components",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|