Commit d0e9df11 authored by tom's avatar tom

port fix

parent 34df594c
......@@ -5,7 +5,7 @@ const baseUrl = [
process.env.NEXT_PUBLIC_APP_PROTOCOL || 'https',
'://',
process.env.NEXT_PUBLIC_VERCEL_URL || process.env.NEXT_PUBLIC_APP_HOST,
process.env.NEXT_PUBLIC_APP_PORT ? ':' + process.env.NEXT_PUBLIC_APP_PORT : '',
process.env.NEXT_PUBLIC_APP_PORT && process.env.NEXT_PUBLIC_APP_PORT !== '80' ? ':' + process.env.NEXT_PUBLIC_APP_PORT : '',
].join('');
const DEFAULT_CURRENCY_DECIMALS = 18;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment