19 lines
No EOL
703 B
TypeScript
19 lines
No EOL
703 B
TypeScript
import { NextRequest, NextResponse } from "next/server";
|
|
|
|
export async function GET(req: NextRequest) {
|
|
try {
|
|
const searchParams = req.nextUrl.searchParams
|
|
const lat = searchParams.get("lat");
|
|
const lon = searchParams.get("lon");
|
|
const url = `https://api.open-meteo.com/v1/forecast?latitude=${lat}&longitude=${lon}&daily=uv_index_max,uv_index_clear_sky_max&timezone=auto&forecast_days=1`
|
|
const res = await fetch(url, {
|
|
next: {revalidate: 900},
|
|
});
|
|
const UVData = await res.json()
|
|
return NextResponse.json(UVData)
|
|
|
|
} catch (error) {
|
|
console.log(error)
|
|
return new Response('Error', {status: 500});
|
|
}
|
|
} |