Skip to content

Commit

Permalink
fix(webpack.dev): set devtool to source-map
Browse files Browse the repository at this point in the history
cheap-module-eval-source-map doesn’t seem work
  • Loading branch information
kiki-le-singe committed Sep 11, 2016
1 parent 58bebae commit 25d9864
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webpack/dev.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const {
debug('Create configuration.')
const config = {
context: paths('base'),
devtool: 'cheap-module-eval-source-map',
devtool: 'source-map',
entry: {
app: [
`webpack-hot-middleware/client?reload=true&path=http://${SERVER_HOST}:${WEBPACK_DEV_SERVER_PORT}/__webpack_hmr`,
Expand Down

0 comments on commit 25d9864

Please sign in to comment.