Files
archived-starters/examples/svelte-kit/svelte.config.js
2021-05-14 02:08:27 -07:00

16 lines
367 B
JavaScript

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: {
// hydrate the <div id="svelte"> element in src/app.html
target: "#svelte",
},
};
export default config;