Merge pull request #1844 from RafaelTaranto/chore/big-formatting

LAM-1417 fix: re-instate urlResolver
This commit is contained in:
Rafael Taranto 2025-05-12 19:23:44 +01:00 committed by GitHub
commit 7b9e424900

View file

@ -0,0 +1,9 @@
const url = `https://${
process.env.NODE_ENV === 'development'
? window.location.host
: window.location.hostname
}`
const urlResolver = content => `${url}${content}`
export { urlResolver }