From 5f3531f1c30646366dbb4332ec4d284d9e765c2b Mon Sep 17 00:00:00 2001 From: Anthony Chu Date: Wed, 11 Feb 2026 22:06:55 -0800 Subject: [PATCH 1/2] Configure for remote build: add remoteBuild to azure.yaml, ignore full node_modules in .funcignore --- .funcignore | 4 +--- azure.yaml | 1 + 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.funcignore b/.funcignore index b9b6a70..7e2c849 100644 --- a/.funcignore +++ b/.funcignore @@ -4,6 +4,4 @@ local.settings.json test getting_started.md -node_modules/@types/ -node_modules/azure-functions-core-tools/ -node_modules/typescript/ \ No newline at end of file +node_modules diff --git a/azure.yaml b/azure.yaml index 7fd6f25..6bbba57 100644 --- a/azure.yaml +++ b/azure.yaml @@ -8,3 +8,4 @@ services: project: . language: js host: function + remoteBuild: true From 41c83dcf49a046a7bae43c456061800143040f40 Mon Sep 17 00:00:00 2001 From: Anthony Chu Date: Wed, 11 Feb 2026 22:22:44 -0800 Subject: [PATCH 2/2] Change language from js to ts in azure.yaml --- azure.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure.yaml b/azure.yaml index 6bbba57..fc60ddd 100644 --- a/azure.yaml +++ b/azure.yaml @@ -6,6 +6,6 @@ metadata: services: api: project: . - language: js + language: ts host: function remoteBuild: true