update dependencies

This commit is contained in:
Julian Tölle 2021-05-15 18:27:05 +02:00
parent d1c0eb8d17
commit be06093f09
11 changed files with 253 additions and 260 deletions

22
svelte.config.js Normal file
View file

@ -0,0 +1,22 @@
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;