diff --git a/src/browser/ScriptManager.zig b/src/browser/ScriptManager.zig index 44d3ef93..e94320ba 100644 --- a/src/browser/ScriptManager.zig +++ b/src/browser/ScriptManager.zig @@ -140,6 +140,10 @@ pub fn addFromElement(self: *ScriptManager, element: *parser.Element) !void { if (std.ascii.eqlIgnoreCase(script_type, "application/json")) { return; } + if (std.ascii.eqlIgnoreCase(script_type, "application/ld+json")) { + return; + } + log.warn(.user_script, "unknown script type", .{ .type = script_type }); return; };