We have a gatsby Azure SWA running on port 8000 and a separate functions App running on port 7071 (Functions app not part of the SWA). Have the latest static-web-app-cli and have been using the following command for proxying function calls with no issues.
swa start http://localhost:9000 --api-location http://localhost:7071
Recently we added non HTTP triggered functions to our functions app and this caused the following error with swa start in the dev environment (works fine in production when deployed)
Function app contains non-HTTP triggered functions. Azure Static Web Apps managed
functions only support HTTP functions. To use this function app with Static Web Apps,
see 'Bring your own function app'
We are already using the 'Bring your own function app' as our functions app is a separate app and not part of SWA. How can I get the non-HTTP functions working locally for debugging with our static web app? Thank you