koboldcpp/tools/server/webui/svelte.config.js
Concedo 1cc4403cba updated llama.cpp web ui (+2 squashed commit)
Squashed commit:

[9b22ac6e4] more fixes for lcpp web ui,. will be squashed

[522b59b4c] henky tries using svelte or something
2025-11-24 00:43:27 +08:00

35 lines
728 B
JavaScript

import { mdsvex } from 'mdsvex';
import adapter from '@sveltejs/adapter-static';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://svelte.dev/docs/kit/integrations
// for more information about preprocessors
preprocess: [vitePreprocess(), mdsvex()],
kit: {
paths: {
base: '/lcpp',
relative: true
},
router: { type: 'hash' },
adapter: adapter({
pages: '../public',
assets: '../public',
fallback: 'index.html',
precompress: false,
strict: true
}),
output: {
bundleStrategy: 'inline'
},
alias: {
$styles: 'src/styles'
}
},
extensions: ['.svelte', '.svx']
};
export default config;