mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-04 03:39:37 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			314 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			314 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import preprocess from 'svelte-preprocess';
 | 
						|
import adapter from '@sveltejs/adapter-node';
 | 
						|
 | 
						|
/** @type {import('@sveltejs/kit').Config} */
 | 
						|
const config = {
 | 
						|
	preprocess: preprocess(),
 | 
						|
 | 
						|
	kit: {
 | 
						|
		adapter: adapter({ out: 'build' }),
 | 
						|
		methodOverride: {
 | 
						|
			allowed: ['PATCH', 'DELETE']
 | 
						|
		}
 | 
						|
	}
 | 
						|
};
 | 
						|
 | 
						|
export default config;
 |