Skip to content

Commit

Permalink
proper paths for hot config
Browse files Browse the repository at this point in the history
  • Loading branch information
Judahmeek committed Aug 21, 2017
1 parent 02db473 commit 397ed8d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spec/dummy/client/webpack.client.rails.hot.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ module.exports = merge.strategy(
entry: {
'app-bundle': [
'react-hot-loader/patch',
`webpack-dev-server/client?${output.devServerUrl}`,
`webpack-dev-server/client?http://${settings.dev_server.host}:${settings.dev_server.port}`,
'webpack/hot/only-dev-server'
],
},

output: {
filename: '[name].js',
path: output.publicPath,
publicPath: output.publicPathWithHost,
path: output.path,
publicPath: output.publicPath,
},

module: {
Expand Down

0 comments on commit 397ed8d

Please sign in to comment.