mirror of
https://github.com/immich-app/immich.git
synced 2025-11-02 21:27:39 +09:00
chore(web): Update to Svelte 4 (#3196)
* 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>
This commit is contained in:
@@ -4,7 +4,12 @@ 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' }),
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user