Re-enabled packages backend build to be production mode (whoops)

This commit is contained in:
Brian Vaughn 2019-07-25 15:10:30 -07:00
parent 050cb8452d
commit 76c67399db
1 changed files with 1 additions and 1 deletions

View File

@ -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',