Browse Source

use webpack.DefinePlugin.runtimeValue for __VERSION__

Alexander Rose 5 years ago
parent
commit
6e13ef5cbc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      webpack.config.common.js

+ 1 - 1
webpack.config.common.js

@@ -36,7 +36,7 @@ const sharedConfig = {
             ],
         }),
         new webpack.DefinePlugin({
-            __VERSION__: JSON.stringify(require('./package.json').version),
+            __VERSION__: webpack.DefinePlugin.runtimeValue(() => JSON.stringify(require('./package.json').version), true),
             __VERSION_TIMESTAMP__: webpack.DefinePlugin.runtimeValue(() => `${new Date().valueOf()}`, true),
             'process.env.DEBUG': JSON.stringify(process.env.DEBUG)
         }),