2
0

fix(docker): 🐛 Runtime public environment

This commit is contained in:
Baptiste Arnaud
2022-06-21 10:36:41 +02:00
parent ea765640cf
commit e03fe9f7d9
54 changed files with 349 additions and 164 deletions

View File

@ -1,5 +1,5 @@
import React from 'react'
import { isEmpty } from 'utils'
import { env, isEmpty } from 'utils'
export const ErrorPage = ({ error }: { error: Error }) => {
return (
@ -12,7 +12,7 @@ export const ErrorPage = ({ error }: { error: Error }) => {
flexDirection: 'column',
}}
>
{isEmpty(process.env.NEXT_PUBLIC_VIEWER_URL) ? (
{isEmpty(env('VIEWER_URL')) ? (
<>
<h1 style={{ fontWeight: 'bold', fontSize: '30px' }}>
NEXT_PUBLIC_VIEWER_URL is missing