fix: correct Azure Function host configuration placement.

This commit is contained in:
2026-05-21 16:48:06 +02:00
parent bdd851ffca
commit dbe9081295
2 changed files with 7 additions and 1 deletions
+7 -1
View File
@@ -12,7 +12,13 @@
} }
], ],
"description": "Automated SSL/TLS certificate management using ACME protocol with Azure KeyVault and Azure DNS", "description": "Automated SSL/TLS certificate management using ACME protocol with Azure KeyVault and Azure DNS",
"main": "dist/index.js", "main": "dist/function/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"types": "dist/index.d.ts", "types": "dist/index.d.ts",
"bin": { "bin": {
"azure-acme-provisioner": "./dist/cli.js" "azure-acme-provisioner": "./dist/cli.js"