File tree Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Expand file tree Collapse file tree 2 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -131,6 +131,10 @@ module.exports = {
131
131
SENTRY_DSN : '' , // dev
132
132
LOCAL_RELAYER_URL : '' ,
133
133
ROOT_URL : '' ,
134
+ LOGO_ID : '' ,
135
+ LOGO_LINK : '' ,
136
+ APP_LINK : '' ,
137
+ APP_NAME : '' ,
134
138
} ) ,
135
139
new webpack . ProvidePlugin ( {
136
140
Buffer : [ 'buffer' , 'Buffer' ] ,
Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ const Constants = require('../constants')
2
2
const DEBUG = process . env . DEBUG
3
3
4
4
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/' ,
10
10
version : `v0.${ Constants . MajorVersion } .${ Constants . MinorVersion } ` ,
11
11
lastLibraryUpdateVersion : `v0.${ Constants . MajorVersion } .1` ,
12
12
// lastLibraryUpdateVersion: `v0.16.0`, // use this for manual override
You can’t perform that action at this time.
0 commit comments