Remove return definition
This commit is contained in:
parent
14b6924b02
commit
622851c2ed
1 changed files with 1 additions and 1 deletions
2
ui/app/api/env/route.ts
vendored
2
ui/app/api/env/route.ts
vendored
|
|
@ -1,7 +1,7 @@
|
||||||
import process from 'process';
|
import process from 'process';
|
||||||
import { NextResponse } from 'next/server';
|
import { NextResponse } from 'next/server';
|
||||||
|
|
||||||
export async function GET(_request: Request): NextResponse {
|
export async function GET(_request: Request) {
|
||||||
// Access environment variables
|
// Access environment variables
|
||||||
const envVars = {
|
const envVars = {
|
||||||
'BACKEND_API_URL': process.env.BACKEND_API_URL,
|
'BACKEND_API_URL': process.env.BACKEND_API_URL,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue