Skip to content

Commit fd9f28b

Browse files
authored
Disable host check (#26)
* Disable host check * Bump version
1 parent 5c2b2fa commit fd9f28b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@b12/metronome",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"description": "",
55
"main": "index.es6.js",
66
"scripts": {

webpack.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ module.exports = {
1010
clientLogLevel: 'info',
1111
contentBase: path.join(__dirname, 'src'),
1212
host: '0.0.0.0',
13-
port: 8080 // Update this port with an available port on your machine!
13+
port: 8080, // Update this port with an available port on your machine!
14+
disableHostCheck: true,
1415
},
1516
module: {
1617
rules: [

0 commit comments

Comments
 (0)