svelte-hint/svelte.config.js

13 lines
243 B
JavaScript
Raw Normal View History

2022-05-06 17:05:54 +00:00
import adapter from '@sveltejs/adapter-auto'
import preprocess from 'svelte-preprocess'
2022-01-13 12:35:07 +00:00
/** @type {import('@sveltejs/kit').Config} */
const config = {
2022-05-06 17:05:54 +00:00
preprocess: preprocess(),
kit: {
adapter: adapter(),
},
}
2022-01-13 12:35:07 +00:00
2022-05-06 17:05:54 +00:00
export default config