We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 050cb84 commit 76c6739Copy full SHA for 76c6739
packages/react-devtools-core/webpack.backend.js
@@ -14,7 +14,7 @@ const GITHUB_URL = getGitHubURL();
14
const DEVTOOLS_VERSION = getVersionString();
15
16
module.exports = {
17
- mode: 'development', // TODO TESTING __DEV__ ? 'development' : 'production',
+ mode: __DEV__ ? 'development' : 'production',
18
devtool: __DEV__ ? 'cheap-module-eval-source-map' : false,
19
entry: {
20
backend: './src/backend.js',
0 commit comments