mirror of
https://github.com/immich-app/immich.git
synced 2024-11-28 09:33:27 +02:00
Fix incorrect way to access the environment variable in Svelte
This commit is contained in:
parent
43e9529ce4
commit
753d81adad
@ -1,7 +1,6 @@
|
||||
import { env } from '$env/dynamic/public';
|
||||
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 () => {
|
||||
return json({
|
||||
|
Loading…
Reference in New Issue
Block a user