10 lines
289 B
TypeScript
10 lines
289 B
TypeScript
import { NextResponse } from "next/server";
|
|
|
|
export async function GET() {
|
|
const response = await fetch(`${process.env.NEXT_PUBLIC_API_URL}/about-me`, {
|
|
cache: "no-store" // غیرفعال کردن کش
|
|
});
|
|
const data = await response.json();
|
|
return NextResponse.json(data);
|
|
}
|