Capital/svelte.config.js

18 lines
398 B
JavaScript
Raw Normal View History

2024-06-08 12:00:43 +00:00
import adapter from '@sveltejs/adapter-netlify';
2024-06-08 11:51:59 +00: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: {
2024-06-08 12:00:43 +00:00
adapter: adapter({
edge: true
})
}
2024-06-08 11:51:59 +00:00
};
export default config;