shellnutdev/svelte.config.js

16 lines
368 B
JavaScript
Raw Normal View History

2021-09-08 04:25:32 +00:00
import sveltePreprocess from 'svelte-preprocess';
2021-09-01 05:11:08 +00:00
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://github.com/sveltejs/svelte-preprocess
// for more information about preprocessors
2021-09-08 04:25:32 +00:00
preprocess: sveltePreprocess(),
2021-09-01 05:11:08 +00:00
kit: {
// hydrate the <div id="svelte"> element in src/app.html
target: '#svelte'
}
};
export default config;