auth.andert.me/svelte/svelte.config.js

10 lines
255 B
JavaScript
Raw Normal View History

2023-07-19 09:42:47 +00:00
import adapter from '@sveltejs/adapter-auto';
import { vitePreprocess } from '@sveltejs/kit/vite';
/** @type {import('@sveltejs/kit').Config} */
const config = {
kit: {
adapter: adapter()
},
preprocess: vitePreprocess()
};
export default config;