From fc82cc962f59863b14cd82e970a45dc65147c922 Mon Sep 17 00:00:00 2001 From: Boaz Poolman Date: Mon, 30 Jun 2025 07:36:31 +0200 Subject: [PATCH] fix: add /config/sync folder to the watchIgnoreFiles --- playground/config/admin.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/playground/config/admin.ts b/playground/config/admin.ts index c556d27..f1d0025 100644 --- a/playground/config/admin.ts +++ b/playground/config/admin.ts @@ -18,6 +18,7 @@ export default ({ env }) => ({ promoteEE: env.bool('FLAG_PROMOTE_EE', true), }, watchIgnoreFiles: [ + '**/config/sync/**', '!**/.yalc/**/server/**', ], });