Skip to content

Commit

Permalink
fix: remove unnecessary localhost port config
Browse files Browse the repository at this point in the history
  • Loading branch information
greatertomi committed Apr 16, 2024
1 parent 0a3c06e commit 0e14164
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/browser-extension-wallet/webpack-utils.js
Expand Up @@ -25,7 +25,7 @@ const transformManifest = (content, mode) => {
.replace(
'$LOCALHOST_CONNECT_SRC',
mode === 'development'
? 'http://localhost:3000 http://localhost:3001 http://localhost:8080 http://localhost:* ws://localhost:3000 ws://0.0.0.0:3000/ws wss://localhost:3000 ws://localhost:3001 ws://0.0.0.0:3001/ws wss://localhost:3001'
? 'http://localhost:* ws://localhost:3000 ws://0.0.0.0:3000/ws wss://localhost:3000 ws://localhost:3001 ws://0.0.0.0:3001/ws wss://localhost:3001'
: 'http://localhost:*'
);

Expand Down

0 comments on commit 0e14164

Please sign in to comment.