From 077d63c175dc6e3eaa1b6e91f1811ce1d4d93d96 Mon Sep 17 00:00:00 2001 From: themodrnhakr Date: Sat, 4 Oct 2025 01:31:42 -0500 Subject: [PATCH] Enable the vite/svelte inspector. --- svelte.config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/svelte.config.js b/svelte.config.js index fa32c1f..a559125 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -19,6 +19,9 @@ const config = { async: true, }, }, + vitePlugin: { + inspector: true, + }, }; export default config;