From b24748777294b3646e67c4b7e599e032ee1dfcf9 Mon Sep 17 00:00:00 2001 From: Mitchell Riedstra Date: Sun, 1 Jan 2023 20:09:47 -0500 Subject: Start of Svelte UI --- ui/svelte.config.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 ui/svelte.config.js (limited to 'ui/svelte.config.js') diff --git a/ui/svelte.config.js b/ui/svelte.config.js new file mode 100644 index 0000000..87f198f --- /dev/null +++ b/ui/svelte.config.js @@ -0,0 +1,15 @@ +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(), + + kit: { + adapter: adapter() + } +}; + +export default config; -- cgit v1.2.3