Skip to content

Commit

Permalink
Reverted devtool back to cheap-module-source-map
Browse files Browse the repository at this point in the history
  • Loading branch information
walidkayhan committed Oct 13, 2023
1 parent d81522c commit cfc8205
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion webpack.config.app.production.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ module.exports = {
cache: true,
target: 'web',
context: path.resolve(__dirname, 'src/app'),
devtool: 'source-map',
devtool: 'cheap-module-source-map',
entry: {
polyfill: [
path.resolve(__dirname, 'src/app/polyfill/index.js')
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.server.production.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const buildVersion = pkg.version;

module.exports = {
mode: 'production',
devtool: 'source-map',
devtool: 'cheap-module-source-map',
target: 'node', // ignore built-in modules like path, fs, etc.
context: path.resolve(__dirname, 'src/server'),
entry: {
Expand Down

0 comments on commit cfc8205

Please sign in to comment.