From 23ab0a24ba82004fa449491b4e08698a1de9e6a0 Mon Sep 17 00:00:00 2001 From: ivarlovlie Date: Sat, 11 Feb 2023 21:04:43 +0100 Subject: feat: Initial commit --- svelte.config.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 svelte.config.js (limited to 'svelte.config.js') diff --git a/svelte.config.js b/svelte.config.js new file mode 100644 index 0000000..c64ccb6 --- /dev/null +++ b/svelte.config.js @@ -0,0 +1,21 @@ +import preprocess from 'svelte-preprocess'; +import adapter from '@sveltejs/adapter-auto'; +import { vitePreprocess } from '@sveltejs/kit/vite'; + +/** @type {import('@sveltejs/kit').Config} */ +const config = { + // Consult https://kit.svelte.dev/docs/integrations#preprocessors + // for more information about preprocessors + preprocess: [ + vitePreprocess(), + preprocess({ + postcss: true + }) + ], + + kit: { + adapter: adapter() + } +}; + +export default config; -- cgit v1.3