From e60703aadca7d423c0fbfb189d5ef439fc1df072 Mon Sep 17 00:00:00 2001 From: ivarlovlie Date: Mon, 14 Nov 2022 13:50:31 +0700 Subject: feat: Initial commit --- code/app-web/svelte.config.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 code/app-web/svelte.config.js (limited to 'code/app-web/svelte.config.js') diff --git a/code/app-web/svelte.config.js b/code/app-web/svelte.config.js new file mode 100644 index 0000000..892f0c4 --- /dev/null +++ b/code/app-web/svelte.config.js @@ -0,0 +1,15 @@ +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() + } +}; + +export default config; -- cgit v1.3