mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-30 18:35:00 -04:00 
			
		
		
		
	* Added staging docker-compose file * Use lodash-es and remove hydration option on photos page fixed the problem
		
			
				
	
	
		
			17 lines
		
	
	
		
			317 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			317 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;
 |