2025-09-06 14:58:25 +02:00
|
|
|
import type {Config} from 'updates';
|
|
|
|
|
|
2024-03-13 09:43:58 +01:00
|
|
|
export default {
|
|
|
|
|
exclude: [
|
|
|
|
|
'@mcaptcha/vanilla-glue', // breaking changes in rc versions need to be handled
|
2025-04-24 05:22:40 +08:00
|
|
|
'cropperjs', // need to migrate to v2 but v2 is not compatible with v1
|
2025-03-16 10:04:18 +01:00
|
|
|
'tailwindcss', // need to migrate
|
2024-03-13 09:43:58 +01:00
|
|
|
],
|
2025-09-06 14:58:25 +02:00
|
|
|
} satisfies Config;
|