mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-11-03 09:22:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			605 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			605 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: {
 | 
						|
		adapter: adapter({
 | 
						|
			pages: '../public',
 | 
						|
			assets: '../public',
 | 
						|
			fallback: 'index.html',
 | 
						|
			precompress: false,
 | 
						|
			strict: true
 | 
						|
		}),
 | 
						|
		output: {
 | 
						|
			bundleStrategy: 'inline'
 | 
						|
		}
 | 
						|
	},
 | 
						|
	extensions: ['.svelte', '.svx']
 | 
						|
};
 | 
						|
 | 
						|
export default config;
 |