mirror of
				https://github.com/immich-app/immich.git
				synced 2025-11-04 03:27:09 -05:00 
			
		
		
		
	* trying to update to svelte 4 * update dependencies * remove global transition * suppress wrning * chore: install from github * revert material icon change * Supress a11y warning * update * remove coverage test on web --------- Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
		
			
				
	
	
		
			19 lines
		
	
	
		
			385 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			385 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import adapter from '@sveltejs/adapter-node';
 | 
						|
import preprocess from 'svelte-preprocess';
 | 
						|
 | 
						|
/** @type {import('@sveltejs/kit').Config} */
 | 
						|
const config = {
 | 
						|
  preprocess: preprocess(),
 | 
						|
  onwarn: (warning, handler) => {
 | 
						|
    if (warning.code.includes('a11y')) {
 | 
						|
      return;
 | 
						|
    }
 | 
						|
    handler(warning);
 | 
						|
  },
 | 
						|
  kit: {
 | 
						|
    adapter: adapter({ out: 'build' }),
 | 
						|
  },
 | 
						|
};
 | 
						|
 | 
						|
export default config;
 |