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' + }) } };