Skip to content

Commit 385e350

Browse files
committed
ditto
1 parent 12ad95f commit 385e350

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

code/client/webpack.config.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,10 @@ module.exports = {
131131
SENTRY_DSN: '', // dev
132132
LOCAL_RELAYER_URL: '',
133133
ROOT_URL: '',
134+
LOGO_ID: '',
135+
LOGO_LINK: '',
136+
APP_LINK: '',
137+
APP_NAME: '',
134138
}),
135139
new webpack.ProvidePlugin({
136140
Buffer: ['buffer', 'Buffer'],

code/lib/config/common.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ const Constants = require('../constants')
22
const DEBUG = process.env.DEBUG
33

44
module.exports = {
5-
appId: process.env.APP_ID ?? 'ONEWallet',
6-
appName: process.env.APP_NAME ?? 'OTP Wallet',
7-
logoId: process.env.LOGO_ID ?? 'modulo',
8-
logoLink: process.env.LOGO_LINK ?? 'https://modulo.so',
9-
appLink: process.env.APP_LINK ?? 'https://otpwallet.xyz/',
5+
appId: process.env.APP_ID || 'ONEWallet',
6+
appName: process.env.APP_NAME || 'OTP Wallet',
7+
logoId: process.env.LOGO_ID || 'modulo',
8+
logoLink: process.env.LOGO_LINK || 'https://modulo.so',
9+
appLink: process.env.APP_LINK || 'https://otpwallet.xyz/',
1010
version: `v0.${Constants.MajorVersion}.${Constants.MinorVersion}`,
1111
lastLibraryUpdateVersion: `v0.${Constants.MajorVersion}.1`,
1212
// lastLibraryUpdateVersion: `v0.16.0`, // use this for manual override

0 commit comments

Comments
 (0)