Tag: hint
-
Set Azure Function timeout without republishing

A while ago I needed to change an Azure Function timeout but I wanted to avoid, if possible, to republish it. After a little while searching I discovered this page which explain how to overwrite the values specified in the host.json file with the values specified from the Azure configuration.…
-
A wild SocketException appeared!

Today I was debugging an old web API project and suddenly an error appeared: I tried restarting Visual Studio but the error remains…considering that I didn’t change anything from the previous debugging session I decided to ask the web and after a little while searching I discovered a simple solution.…
-
Console.log …or not?

I bet that on your way developing components for SPFx you already know what console.log is and how to use it…but you know that there are also other useful methods? Following the documentation here you can find all the supported methods, some of which are: I think that some of…