webcompile/svelte.config.js

16 lines
366 B
JavaScript
Raw Normal View History

2023-02-03 19:55:33 +02:00
import adapter from "@sveltejs/adapter-node";
import { vitePreprocess } from "@sveltejs/kit/vite";
2022-02-28 19:12:33 +01:00
/** @type {import('@sveltejs/kit').Config} */
const config = {
2023-01-25 19:11:11 +02:00
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
// for more information about preprocessors
2023-01-25 19:11:11 +02:00
preprocess: vitePreprocess(),
2022-02-28 19:12:33 +01:00
kit: {
2023-01-06 10:01:05 +02:00
adapter: adapter()
}
2022-02-28 19:12:33 +01:00
};
export default config;