Skip to content

Commit

Permalink
Set DEBUG_INFO_ENABLED to false
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaugarcia committed Jan 10, 2020
1 parent b52dc38 commit f875a2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webpack/webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ module.exports = (options) => ({
BUILD_TIMESTAMP: `'${new Date().getTime()}'`,
// APP_VERSION is passed as an environment variable from the Gradle / Maven build tasks.
VERSION: `'${process.env.hasOwnProperty('APP_VERSION') ? process.env.APP_VERSION : 'DEV'}'`,
DEBUG_INFO_ENABLED: options.env === 'development',
DEBUG_INFO_ENABLED: false,
// The root URL for API calls, ending with a '/' - for example: `"https://www.jhipster.tech:8081/myservice/"`.
// If this URL is left empty (""), then it will be relative to the current context.
// If you use an API server, in `prod` mode, you will need to enable CORS
Expand Down

0 comments on commit f875a2b

Please sign in to comment.