22 lines
624 B
TypeScript
22 lines
624 B
TypeScript
import { NextRequest, NextResponse } from "next/server";
|
|
import { proxyBackendJsonGet } from "@/lib/api-proxy";
|
|
|
|
const API_BASE = process.env.POLYWEATHER_API_BASE_URL;
|
|
|
|
export async function GET(req: NextRequest) {
|
|
if (!API_BASE) {
|
|
const response = NextResponse.json(
|
|
{ error: "POLYWEATHER_API_BASE_URL is not configured" },
|
|
{ status: 500 },
|
|
);
|
|
return response;
|
|
}
|
|
|
|
return proxyBackendJsonGet(req, {
|
|
cacheControl: "public, max-age=0, s-maxage=60, stale-while-revalidate=300",
|
|
publicMessage: "Failed to fetch cities",
|
|
revalidateSeconds: 60,
|
|
url: `${API_BASE}/api/cities`,
|
|
});
|
|
}
|