mirror of
https://github.com/immich-app/immich.git
synced 2024-11-15 09:59:00 -07:00
d5b96c0257
* 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;
|