2
0
mirror of https://github.com/iconify/iconify.git synced 2024-10-23 09:02:03 +00:00
iconify/components-demo/sveltekit-demo/svelte.config.js

16 lines
346 B
JavaScript
Raw Normal View History

2022-09-08 06:16:41 +00:00
import adapter from '@sveltejs/adapter-auto';
import preprocess from 'svelte-preprocess';
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://github.com/sveltejs/svelte-preprocess
// for more information about preprocessors
preprocess: preprocess(),
kit: {
2023-01-27 16:39:20 +00:00
adapter: adapter(),
},
};
export default config;