CoolFace
Datasetpublic

echodict/llama.cpp

version https://git-lfs.github.com/spec/v1 oid sha256:cfc44b7ba25614df70e6b65e3341cae0310163bd32fd31a6b928a542df433faf size 30786

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes765downloads
svelte.config.js38 linesDownload Raw Back to webui
1import { mdsvex } from 'mdsvex';2import adapter from '@sveltejs/adapter-static';3import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';4 5/** @type {import('@sveltejs/kit').Config} */6const config = {7	// Consult https://svelte.dev/docs/kit/integrations8	// for more information about preprocessors9	preprocess: [vitePreprocess(), mdsvex()],10 11	kit: {12		paths: {13			relative: true14		},15		router: { type: 'hash' },16		adapter: adapter({17			pages: '../public',18			assets: '../public',19			fallback: 'index.html',20			precompress: false,21			strict: true22		}),23		output: {24			bundleStrategy: 'single'25		},26		alias: {27			$styles: 'src/styles'28		},29		version: {30			name: 'llama-server-webui'31		}32	},33 34	extensions: ['.svelte', '.svx']35};36 37export default config;38