Skip to content
Snippets Groups Projects
Commit 8eddd642 authored by Tadeusz Miesiąc's avatar Tadeusz Miesiąc
Browse files

fix(fallback for env variables): added fallback when there is error with env

parent 30569d67
No related branches found
No related tags found
2 merge requests!223reset the pin numbers before search results are fetch (so the results will be...,!23feat(env variables): added env variables
Pipeline #79178 passed
export const BASE_API_URL = process.env.NEXT_PUBLIC_BASE_API_URL;
\ No newline at end of file
export const BASE_API_URL = process.env.NEXT_PUBLIC_BASE_API_URL || '';
export const PROJECT_ID = process.env.NEXT_PUBLIC_PROJECT_ID;
export const PROJECT_ID = process.env.NEXT_PUBLIC_PROJECT_ID || '';
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment