caddyui/svelte.config.js

16 lines
376 B
JavaScript
Raw Normal View History

2024-12-23 13:58:55 +01:00
import adapter from '@sveltejs/adapter-node';
2024-10-15 08:35:05 +02:00
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
// for more information about preprocessors
preprocess: vitePreprocess(),
kit: {
adapter: adapter()
}
};
export default config;