website/svelte.config.js

16 lines
376 B
JavaScript
Raw Normal View History

2023-02-03 23:25:33 +05:30
import adapter from "@sveltejs/adapter-node";
2024-01-20 16:21:41 +05:30
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
2022-02-28 23:42:33 +05:30
/** @type {import('@sveltejs/kit').Config} */
const config = {
2023-01-25 22:41:11 +05:30
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
// for more information about preprocessors
2023-01-25 22:41:11 +05:30
preprocess: vitePreprocess(),
2022-02-28 23:42:33 +05:30
kit: {
2023-01-06 13:31:05 +05:30
adapter: adapter()
}
2022-02-28 23:42:33 +05:30
};
export default config;