mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-10-29 08:41:22 +00:00 
			
		
		
		
	 e0539eb6ae
			
		
	
	e0539eb6ae
	
	
	
		
			
			* Switched web UI to hash-based routing * Added hash to missed goto function call * Removed outdated SPA handling code * Fixed broken sidebar home link
		
			
				
	
	
		
			30 lines
		
	
	
		
			667 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			667 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: {
 | |
| 			relative: true
 | |
| 		},
 | |
| 		router: { type: 'hash' },
 | |
| 		adapter: adapter({
 | |
| 			pages: '../public',
 | |
| 			assets: '../public',
 | |
| 			fallback: 'index.html',
 | |
| 			precompress: false,
 | |
| 			strict: true
 | |
| 		}),
 | |
| 		output: {
 | |
| 			bundleStrategy: 'inline'
 | |
| 		}
 | |
| 	},
 | |
| 	extensions: ['.svelte', '.svx']
 | |
| };
 | |
| 
 | |
| export default config;
 |