Skip to content

Commit

Permalink
Avoid deprecated warning in Chrome Canary
Browse files Browse the repository at this point in the history
Avoid this error: '//@ sourceURL' and '//@ sourceMappingURL' are deprecated, please use '//# sourceURL=' and '//# sourceMappingURL=' instead.
  • Loading branch information
luisherranz committed Apr 8, 2016
1 parent 554dc4f commit 590d85a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import path from 'path';
import webpack from 'webpack';

const config = {
devtool: 'cheap-module-eval-source-map',
devtool: '#cheap-module-eval-source-map',
entry: {
admin: [
'stack-source-map/register',
Expand Down

0 comments on commit 590d85a

Please sign in to comment.