2023-02-03 23:25:33 +05:30
|
|
|
import adapter from "@sveltejs/adapter-node";
|
|
|
|
import { vitePreprocess } from "@sveltejs/kit/vite";
|
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
|
2022-06-18 00:22:07 +05:30
|
|
|
// for more information about preprocessors
|
2023-01-25 22:41:11 +05:30
|
|
|
preprocess: vitePreprocess(),
|
2022-02-28 23:42:33 +05:30
|
|
|
|
2022-06-18 00:22:07 +05:30
|
|
|
kit: {
|
2023-01-06 13:31:05 +05:30
|
|
|
adapter: adapter()
|
2022-06-18 00:22:07 +05:30
|
|
|
}
|
2022-02-28 23:42:33 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
export default config;
|