mirror of
https://github.com/immich-app/immich.git
synced 2025-01-21 00:52:43 -05:00
Fix incorrect way to access the environment variable in Svelte
This commit is contained in:
parent
43e9529ce4
commit
753d81adad
1 changed files with 1 additions and 2 deletions
|
@ -1,7 +1,6 @@
|
||||||
import { env } from '$env/dynamic/public';
|
|
||||||
import { json } from '@sveltejs/kit';
|
import { json } from '@sveltejs/kit';
|
||||||
|
|
||||||
const endpoint = env.PUBLIC_IMMICH_API_URL_EXTERNAL || '/api';
|
const endpoint = process.env.IMMICH_API_URL_EXTERNAL || '/api';
|
||||||
|
|
||||||
export const GET = async () => {
|
export const GET = async () => {
|
||||||
return json({
|
return json({
|
||||||
|
|
Loading…
Add table
Reference in a new issue