Skip to content

Commit fec62f8

Browse files
authored
Merge pull request #7 from oslabs-beta/toolkit-integration
patch: Fix local host port for testing websockets
2 parents 5770f75 + 4c8f912 commit fec62f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const head = document.querySelector('head');
4141
const meta = document.createElement('meta');
4242
meta.httpEquiv = 'Content-Security-Policy';
4343
meta.content = `
44-
default-src 'self' http://localhost:3000 ws://localhost:4000 https://api.github.com 'unsafe-inline';
44+
default-src 'self' http://localhost:3000 ws://localhost:3000 https://api.github.com 'unsafe-inline';
4545
img-src 'self' data: https://avatars.githubusercontent.com/;
4646
child-src 'none';
4747
`;

0 commit comments

Comments
 (0)