Skip to content
This repository was archived by the owner on Feb 11, 2021. It is now read-only.

Commit 7be3e88

Browse files
committed
Silence firefox source map errors/warnings.
The webpack source map configuration was causing errors within Firefox for the source mapping comments (//@ vs. //#). This change removes those errors.
1 parent e4b96fd commit 7be3e88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/simple/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ var path = require( 'path' );
22
var webpack = require( 'webpack' );
33

44
module.exports = {
5-
devtool: 'cheap-module-eval-source-map',
5+
devtool: 'cheap-module-source-map',
66
entry: [
77
'webpack-hot-middleware/client',
88
'./index.jsx'

0 commit comments

Comments
 (0)