mirror of
https://github.com/pheralb/svgl.git
synced 2025-12-29 08:01:36 +08:00
19 lines
448 B
JavaScript
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;
|