mirror of
https://github.com/apricote/ein-pfeil-am-rechten-fleck.de.git
synced 2026-01-13 13:01:02 +00:00
22 lines
489 B
JavaScript
22 lines
489 B
JavaScript
import sveltePreprocess from "svelte-preprocess";
|
|
import vercel from "@sveltejs/adapter-vercel";
|
|
|
|
/** @type {import("@sveltejs/kit").Config} */
|
|
const config = {
|
|
// Consult https://github.com/sveltejs/svelte-preprocess
|
|
// for more information about preprocessors
|
|
preprocess: [
|
|
sveltePreprocess({
|
|
postcss: true,
|
|
}),
|
|
],
|
|
|
|
kit: {
|
|
adapter: vercel(),
|
|
|
|
// hydrate the <div id="svelte"> element in src/app.html
|
|
target: "#svelte",
|
|
},
|
|
};
|
|
|
|
export default config;
|