svelte-hint/svelte.config.js

16 lines
366 B
JavaScript
Raw Normal View History

2022-12-26 21:30:19 +00:00
import adapter from '@sveltejs/adapter-auto';
import { vitePreprocess } from '@sveltejs/kit/vite';
2022-01-13 12:35:07 +00:00
/** @type {import('@sveltejs/kit').Config} */
const config = {
2022-12-26 21:30:19 +00:00
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
// for more information about preprocessors
preprocess: vitePreprocess(),
2022-01-13 12:35:07 +00:00
2022-12-26 21:30:19 +00:00
kit: {
adapter: adapter()
}
};
export default config;