fix: output app version number just like core (#962)
This commit is contained in:
committed by
GitHub
parent
e7dd7bdb2a
commit
bf0c5b6971
@ -3,6 +3,7 @@ const webpack = require('webpack');
|
||||
const ReactRefreshWebpackPlugin = require('@pmmmwh/react-refresh-webpack-plugin');
|
||||
const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin');
|
||||
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
||||
const pkg = require('./package.json');
|
||||
|
||||
const isProduction = process.env.NODE_ENV === 'production';
|
||||
const devServerPort = parseInt(process.env.STATIC_CMS_DEV_SERVER_PORT || `${8080}`);
|
||||
@ -90,6 +91,9 @@ module.exports = {
|
||||
process: 'process/browser',
|
||||
Buffer: ['buffer', 'Buffer'],
|
||||
}),
|
||||
new webpack.DefinePlugin({
|
||||
STATIC_CMS_APP_VERSION: JSON.stringify(`${pkg.version}${isProduction ? '' : '-dev'}`),
|
||||
}),
|
||||
].filter(Boolean),
|
||||
output: {
|
||||
path: path.resolve(__dirname, 'dist'),
|
||||
|
Reference in New Issue
Block a user