Skip to content

Commit

Permalink
chore: view envs
Browse files Browse the repository at this point in the history
  • Loading branch information
einaralex committed Jul 30, 2024
1 parent 999c79c commit 45e7c92
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions apps/customer/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,16 @@ import { LoadingScreen } from 'src/components/LoadingScreen';

import s from './page.module.scss';

if (process.env.URL) {
console.log('URL:', process.env.URL);
}
if (process.env.DEPLOY_URL) {
console.log('DEPLOY_URL:', process.env.DEPLOY_URL);
}
if (process.env.DEPLOY_PRIME_URL) {
console.log('DEPLOY_PRIME_URL:', process.env.DEPLOY_PRIME_URL);
}

export default function Home() {
const { isAuthorized, isLoading } = useAuth();
const router = useRouter();
Expand Down

0 comments on commit 45e7c92

Please sign in to comment.