mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-01-11 22:40:31 +00:00
version env variable renamed uppercase
This commit is contained in:
parent
28b4e19359
commit
4781156012
2 changed files with 2 additions and 2 deletions
|
|
@ -119,7 +119,7 @@ const Settings = () => {
|
|||
Streaming server
|
||||
</Button>
|
||||
<div className={styles['spacing']} />
|
||||
<div className={styles['version-info-label']}>App Version: {process.env.version}</div>
|
||||
<div className={styles['version-info-label']}>App Version: {process.env.VERSION}</div>
|
||||
{
|
||||
streaminServer.type === 'Ready' ?
|
||||
<div className={styles['version-info-label']}>Server Version: {streaminServer.settings.serverVersion}</div>
|
||||
|
|
|
|||
|
|
@ -131,7 +131,7 @@ module.exports = (env, argv) => ({
|
|||
plugins: [
|
||||
new webpack.EnvironmentPlugin({
|
||||
DEBUG: argv.mode !== 'production',
|
||||
version: pachageJson.version,
|
||||
VERSION: pachageJson.version,
|
||||
...env
|
||||
}),
|
||||
new webpack.ProgressPlugin(),
|
||||
|
|
|
|||
Loading…
Reference in a new issue