Skip to content

Commit

Permalink
host.json: Ignore comments and trailing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
fowl2 authored and fabiocav committed Jan 8, 2025
1 parent 095fd09 commit bf563c4
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ internal class FunctionsEndpointDataSource : EndpointDataSource

private static readonly JsonSerializerOptions _jsonSerializerOptions = new()
{
PropertyNameCaseInsensitive = true
AllowTrailingCommas = true,
PropertyNameCaseInsensitive = true,
ReadCommentHandling = JsonCommentHandling.Skip,
};


Expand Down

0 comments on commit bf563c4

Please sign in to comment.