chore: Remove redundant config

This commit is contained in:
Sidharth Vinod
2025-03-15 19:55:50 -07:00
parent 423fe7e0d6
commit fe428c7cea

View File

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