Browse Source

Fix dev server connector headers (#1509)

pull/1511/head
Matt Gibson 4 years ago committed by GitHub
parent
commit
7d018e4b59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      webpack.config.js

2
webpack.config.js

@ -190,7 +190,7 @@ const devServer = @@ -190,7 +190,7 @@ const devServer =
},
},
headers: (req) => {
if (!req.url.includes("connector.html")) {
if (!req.originalUrl.includes("connector.html")) {
return [
{
key: "Content-Security-Policy",

Loading…
Cancel
Save