Remove return definition

This commit is contained in:
Andrew Pennington 2024-08-19 12:17:02 +01:00
parent 14b6924b02
commit 622851c2ed
No known key found for this signature in database
GPG key ID: E9DA097213FD17EA

View file

@ -1,7 +1,7 @@
import process from 'process';
import { NextResponse } from 'next/server';
export async function GET(_request: Request): NextResponse {
export async function GET(_request: Request) {
// Access environment variables
const envVars = {
'BACKEND_API_URL': process.env.BACKEND_API_URL,