Skip to content

Commit 90fa6ba

Browse files
Merge 25.7 to 25.11
2 parents 60d028a + bfb0020 commit 90fa6ba

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

api/src/org/labkey/filters/ContentSecurityPolicyFilter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,10 @@ public String getHeaderName()
9292
static
9393
{
9494
// ReactJS hot reload uses localhost port 3001. If in dev mode, allow the browser to access that port for fonts
95-
// and connections.
95+
// and connections. Also allow webpack: protocol for source map loading by some external packages.
9696
if (AppProps.getInstance().isDevMode())
9797
{
98-
registerAllowedSources("reactjs.hot.reload", Directive.Connection, "localhost:3001 ws://localhost:3001");
98+
registerAllowedSources("reactjs.hot.reload", Directive.Connection, "localhost:3001 ws://localhost:3001 webpack:");
9999
registerAllowedSources("reactjs.hot.reload", Directive.Font, "localhost:3001");
100100
}
101101
}

0 commit comments

Comments
 (0)