From 75c6eb7b6ff9c0d5ab000dd333c91e44552d3417 Mon Sep 17 00:00:00 2001 From: Anthony Chu Date: Wed, 11 Feb 2026 22:14:18 -0800 Subject: [PATCH 1/2] Add .funcignore for remote build and add remoteBuild: true to azure.yaml --- azure.yaml | 1 + src/.funcignore | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 src/.funcignore diff --git a/azure.yaml b/azure.yaml index f46ddba..0279401 100644 --- a/azure.yaml +++ b/azure.yaml @@ -8,3 +8,4 @@ services: project: ./src/ language: js host: function + remoteBuild: true diff --git a/src/.funcignore b/src/.funcignore new file mode 100644 index 0000000..4ce0d8e --- /dev/null +++ b/src/.funcignore @@ -0,0 +1,6 @@ +*.js.map +.git* +.vscode +local.settings.json +test +node_modules From df920d080553c1c79c18ed2f50ce455bd49f622d 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 0279401..fd0b031 100644 --- a/azure.yaml +++ b/azure.yaml @@ -6,6 +6,6 @@ metadata: services: api: project: ./src/ - language: js + language: ts host: function remoteBuild: true