Skip to content

Commit

Permalink
use development mode and devtool option to improve debugging experience
Browse files Browse the repository at this point in the history
  • Loading branch information
archmoj committed Dec 22, 2022
1 parent ebd130e commit 458921f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions devtools/test_dashboard/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ var minimist = require('minimist');
var constants = require('../../tasks/util/constants');
var config = require('../../webpack.config.js');
config.optimization = { minimize: false };
// If interested in development mode
// config.mode = 'development';
config.mode = 'development';
config.devtool = 'eval';

var args = minimist(process.argv.slice(2), {});
var PORT = args.port || 3000;
Expand Down

0 comments on commit 458921f

Please sign in to comment.