website/svelte.config.js

16 lines
366 B
JavaScript
Raw Normal View History

2023-01-25 22:41:11 +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
// 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;