|
|
@ -3,7 +3,7 @@ const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer') |
|
|
|
const pkg = require('../package.json') |
|
|
|
require('../src/globals') |
|
|
|
|
|
|
|
const { BUNDLE_ANALYZER, SENTRY_URL, STORYBOOK_ENV } = process.env |
|
|
|
const { BUNDLE_ANALYZER, SENTRY_URL, STORYBOOK_ENV, GIT_REVISION } = process.env |
|
|
|
|
|
|
|
module.exports = type => { |
|
|
|
const plugins = [ |
|
|
@ -12,6 +12,7 @@ module.exports = type => { |
|
|
|
__GLOBAL_STYLES__: JSON.stringify(__GLOBAL_STYLES__), |
|
|
|
__DEV__, |
|
|
|
__PROD__, |
|
|
|
__GIT_REVISION__: JSON.stringify(GIT_REVISION), |
|
|
|
__SENTRY_URL__: JSON.stringify(SENTRY_URL || null), |
|
|
|
__STORYBOOK_ENV__: JSON.stringify(STORYBOOK_ENV), |
|
|
|
'process.env.NODE_ENV': JSON.stringify(__ENV__), |
|
|
|