mirror of
https://github.com/samsonjs/immich.git
synced 2026-04-27 15:07:45 +00: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…
Reference in a new issue