mirror of
https://github.com/Dan6erbond/sk-auth.git
synced 2025-10-12 11:15:50 +02: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;
|