Skip to content

Commit

Permalink
Revert "testing build on CI without sourcemap"
Browse files Browse the repository at this point in the history
This reverts commit 06a3be0.
  • Loading branch information
snyaggarwal committed Jun 19, 2023
1 parent ccbba76 commit d2134a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ module.exports = (env) => {
index: 'index.html',
},
},
devtool: false ? "source-map" : undefined,
devtool: env.NODE_ENV == 'production' ? "source-map" : undefined,
plugins: [
new HtmlWebpackPlugin({
template: './public/index.html',
Expand Down

0 comments on commit d2134a2

Please sign in to comment.