11 lines
351 B
TypeScript
11 lines
351 B
TypeScript
// Renamed to /api/estate-value — this file can be deleted.
|
|
import type { NextRequest } from "next/server";
|
|
import { NextResponse } from "next/server";
|
|
|
|
export const runtime = "nodejs";
|
|
|
|
export function GET(request: NextRequest) {
|
|
const url = new URL(request.url);
|
|
url.pathname = "/api/estate-value";
|
|
return NextResponse.redirect(url, 301);
|
|
}
|