From e4e4b5202bf0039127f591941fddc1ff5ca09897 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Tue, 24 Jan 2023 13:07:20 +0100 Subject: Update project, improve sensor/render logic --- vite.config.js | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 vite.config.js (limited to 'vite.config.js') diff --git a/vite.config.js b/vite.config.js new file mode 100644 index 0000000..8747050 --- /dev/null +++ b/vite.config.js @@ -0,0 +1,8 @@ +import { sveltekit } from '@sveltejs/kit/vite'; + +/** @type {import('vite').UserConfig} */ +const config = { + plugins: [sveltekit()] +}; + +export default config; -- cgit