Skip to content

Commit

Permalink
Re-enabled packages backend build to be production mode (whoops)
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Vaughn committed Jul 25, 2019
1 parent 050cb84 commit 76c6739
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-devtools-core/webpack.backend.js
Expand Up @@ -14,7 +14,7 @@ const GITHUB_URL = getGitHubURL();
const DEVTOOLS_VERSION = getVersionString();

module.exports = {
mode: 'development', // TODO TESTING __DEV__ ? 'development' : 'production',
mode: __DEV__ ? 'development' : 'production',
devtool: __DEV__ ? 'cheap-module-eval-source-map' : false,
entry: {
backend: './src/backend.js',
Expand Down

0 comments on commit 76c6739

Please sign in to comment.