We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 309d70c + ad0117e commit a7b91eeCopy full SHA for a7b91ee
src/browser/browser.zig
@@ -723,6 +723,7 @@ pub const Page = struct {
723
fn parseKind(stype: ?[]const u8) Kind {
724
if (stype == null or stype.?.len == 0) return .javascript;
725
if (std.mem.eql(u8, stype.?, "application/javascript")) return .javascript;
726
+ if (std.mem.eql(u8, stype.?, "text/javascript")) return .javascript;
727
if (std.mem.eql(u8, stype.?, "module")) return .module;
728
729
return .unknown;
0 commit comments