From fe428c7ceabf12fe69acd0cf06573f2fad0fa949 Mon Sep 17 00:00:00 2001 From: Sidharth Vinod Date: Sat, 15 Mar 2025 19:55:50 -0700 Subject: [PATCH] chore: Remove redundant config --- svelte.config.js | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/svelte.config.js b/svelte.config.js index 7b34bfa1..6b71b3cd 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -1,5 +1,5 @@ -import preprocess from 'svelte-preprocess'; import adapter from '@sveltejs/adapter-static'; +import preprocess from 'svelte-preprocess'; /** @type {import('@sveltejs/kit').Config} */ const config = { @@ -12,13 +12,8 @@ const config = { ], kit: { adapter: adapter({ - pages: `docs` - }), - paths: process.env['DEPLOY'] - ? { - base: `/mermaid-live-editor` - } - : {} + pages: 'docs' + }) } };