mentorenwahl/frontend_old/svelte.config.js

18 lines
406 B
JavaScript
Raw Normal View History

2022-02-13 08:40:06 +00:00
import adapter from "@sveltejs/adapter-auto";
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: {
adapter: adapter(),
},
optimizeDeps: {
exclude: ["@urql/svelte"],
},
};
export default config;