12 lines
236 B
JavaScript
12 lines
236 B
JavaScript
import preprocess from 'svelte-preprocess';
|
|
|
|
/**
|
|
* This will add autocompletion if you're working with SvelteKit
|
|
*
|
|
* @type {import('@sveltejs/kit').Config}
|
|
*/
|
|
const config = {
|
|
preprocess: preprocess({})
|
|
};
|
|
|
|
export default config;
|