mirror of
https://github.com/Dan6erbond/sk-auth.git
synced 2024-11-20 19:07:20 +01:00
20 lines
406 B
JavaScript
20 lines
406 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({
|
||
|
postcss: true,
|
||
|
}),
|
||
|
],
|
||
|
|
||
|
kit: {
|
||
|
// hydrate the <div id="svelte"> element in src/app.html
|
||
|
target: "#svelte",
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export default config;
|