mirror of
				https://github.com/KevinMidboe/brewPi.git
				synced 2025-10-29 16:50:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			170 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			170 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { sveltekit } from '@sveltejs/kit/vite';
 | 
						|
import type { UserConfig } from 'vite';
 | 
						|
 | 
						|
const config: UserConfig = {
 | 
						|
  plugins: [sveltekit()]
 | 
						|
};
 | 
						|
 | 
						|
export default config;
 |