Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
showing actual server's hostname and port
  • Loading branch information
ahmpro committed Sep 8, 2017
commit f825ef82b7bea44eabdd5db7f7f75129891b9b00
2 changes: 1 addition & 1 deletion template/build/dev-server.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ app.use(hotMiddleware)
var staticPath = path.posix.join(config.dev.assetsPublicPath, config.dev.assetsSubDirectory)
app.use(staticPath, express.static('./static'))

var uri = 'http://localhost:' + port
var uri = 'http://' + host + ':' + port

var _resolve
var readyPromise = new Promise(resolve => {
Expand Down