From 691c08629dc2ed95328a4b692692c4944dbe0f20 Mon Sep 17 00:00:00 2001 From: Brendon Heinst Date: Tue, 24 Feb 2026 14:37:50 +0100 Subject: [PATCH] Disable auto-updates and add .dockerignore --- .dockerignore | 5 +++++ sanity.cli.ts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .dockerignore diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..575f2fa --- /dev/null +++ b/.dockerignore @@ -0,0 +1,5 @@ +.git +.sanity +dist +node_modules +.DS_Store diff --git a/sanity.cli.ts b/sanity.cli.ts index 53a5f90..2b176f6 100644 --- a/sanity.cli.ts +++ b/sanity.cli.ts @@ -10,6 +10,6 @@ export default defineCliConfig({ * Enable auto-updates for studios. < * Learn more at https://www.sanity.io/docs/cli#auto-updates */ - autoUpdates: true, + autoUpdates: false, }, })