Skip to content

Commit

Permalink
Moved webpack entry from src/index.js to src/client.js. Fixes #41
Browse files Browse the repository at this point in the history
  • Loading branch information
weblogixx committed Aug 9, 2016
1 parent 7eaf5cf commit e8dcd1a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion conf/webpack/Base.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class WebpackBaseConfig {
inline: true,
port: 8000
},
entry: './index.js',
entry: './client.js',
module: {
preLoaders: [
{
Expand Down
2 changes: 1 addition & 1 deletion conf/webpack/Dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class WebpackDevConfig extends WebpackBaseConfig {
entry: [
'webpack-dev-server/client?http://0.0.0.0:8000/',
'webpack/hot/only-dev-server',
'./index.js'
'./client.js'
],
plugins: [
new webpack.HotModuleReplacementPlugin(),
Expand Down
File renamed without changes.

0 comments on commit e8dcd1a

Please sign in to comment.