Skip to content
This repository has been archived by the owner on Feb 2, 2023. It is now read-only.

Commit

Permalink
Merge pull request #122 from Caleydo/stoiber/fix_build_id_webpack_config
Browse files Browse the repository at this point in the history
Change `buildId` to `JSON.stringify(buildId)`
  • Loading branch information
Anita Steiner authored Mar 15, 2020
2 parents 85019f9 + 1a10fb8 commit da43541
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ function generateWebpack(options) {
'process.env.NODE_ENV': JSON.stringify(options.isProduction ? 'production' : 'development'),
__VERSION__: JSON.stringify(pkg.version),
__LICENSE__: JSON.stringify(pkg.license),
__BUILD_ID__: buildId,
__BUILD_ID__: JSON.stringify(buildId),
__DEBUG__: options.isDev || options.isTest,
__TEST__: options.isTest,
__PRODUCTION__: options.isProduction,
Expand Down

0 comments on commit da43541

Please sign in to comment.