Skip to content

Commit ce6a046

Browse files
committed
sourceMap options is false which is not in production
1 parent 52894fd commit ce6a046

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ module.exports = ({production = false} = {}) => {
1919
databaseURL: process.env.FIREBASE_DATABASE_URL
2020
});
2121

22-
const sourceMap = production ? 'cheap-module-source-map' : 'source-map';
22+
const sourceMap = production ? 'cheap-module-source-map' : false;
2323
const chunkName = production ? '[name].[chunkhash].js' : '[name].js';
2424

2525
const webpackConfig = {

0 commit comments

Comments
 (0)