Skip to content

Commit 5307f63

Browse files
authored
Merge pull request #1718 from fippo/listen-only-localhost
let npm start only listen on 127.0.0.1
2 parents 5977d20 + b95a58f commit 5307f63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"url": "https://github.com/webrtc/samples.git"
1818
},
1919
"scripts": {
20-
"start": "http-server . -c-1",
20+
"start": "http-server . -c-1 -a 127.0.0.1",
2121
"test": "npm run eslint && npm run stylelint",
2222
"eslint": "eslint 'test/**.js' 'src/content/**/*.js'",
2323
"jest": "node test/download-browsers.js && jest --testTimeout 5000 --maxWorkers=1 src/content/",

0 commit comments

Comments
 (0)