Fix momentum config
All checks were successful
Build Website / Build NPM Project (push) Successful in 11s
Build Website / Tag Version (push) Successful in 6s
Build Website / Build & Push Dockerfile (push) Successful in 25s

This commit is contained in:
Zakary Timson 2024-12-30 12:19:57 -05:00
parent 94c2f336f6
commit 8d84fc8274

View File

@ -1,6 +1,6 @@
const devMode = location?.port == '5173';
export const environment = {
apiUrl: devMode ? 'http://localhost' : location.host,
apiUrl: devMode ? 'http://localhost' : location.origin,
devMode
}