0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-03-04 02:11:44 -05:00

fix(web): dev mode repeatedly optimizing dependencies (#4379)

* added glob for checking imports

* prettier
This commit is contained in:
Mert 2023-10-07 06:49:34 -04:00 committed by GitHub
parent 104880a729
commit 98a7412855
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,6 +23,9 @@ const config = {
}, },
}, },
plugins: [sveltekit()], plugins: [sveltekit()],
optimizeDeps: {
entries: ['src/**/*.{svelte, ts, html}'],
},
}; };
export default config; export default config;