Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/hmr/hotModuleReplacement.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,8 @@ function reloadAll() {
function isUrlRequest(url) {
// An URL is not an request if

// It is not http or https
if (!/^https?:/i.test(url)) {
// It is not http or https or browser extension
if (!/^(https?|.*extension):/i.test(url)) {
return false;
}

Expand Down