Files
svgl/svelte.config.js
T
2025-08-29 00:13:41 +01:00

19 lines
448 B
JavaScript

import adapter from "@sveltejs/adapter-auto";
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
/** @type {import('@sveltejs/kit').Config} */
const config = {
extensions: [".svelte", ".svx"],
preprocess: [vitePreprocess()],
kit: {
adapter: adapter(),
alias: {
"@/*": "./src/*",
"@/lib/*": "./src/lib/*",
"content-collections": "./.content-collections/generated",
},
},
};
export default config;