From f74650b0ae59a59a7b7c6d5beb984015680fbfb5 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Tue, 28 Jun 2022 22:57:30 +0200 Subject: Add skeleton --- svelte.config.js | 10 ++++++++++ 1 file changed, 10 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..301e785 --- /dev/null +++ b/svelte.config.js @@ -0,0 +1,10 @@ +import adapter from '@sveltejs/adapter-auto'; + +/** @type {import('@sveltejs/kit').Config} */ +const config = { + kit: { + adapter: adapter() + } +}; + +export default config; -- cgit