Fix proxy path — prepend /api/ when forwarding to FastAPI
This commit is contained in:
@@ -7,7 +7,7 @@ async function handler(
|
|||||||
{ params }: { params: Promise<{ slug: string[] }> }
|
{ params }: { params: Promise<{ slug: string[] }> }
|
||||||
) {
|
) {
|
||||||
const { slug } = await params;
|
const { slug } = await params;
|
||||||
const path = '/' + slug.join('/');
|
const path = '/api/' + slug.join('/');
|
||||||
const url = `${API_BASE}${path}${request.nextUrl.search}`;
|
const url = `${API_BASE}${path}${request.nextUrl.search}`;
|
||||||
|
|
||||||
const headers = new Headers();
|
const headers = new Headers();
|
||||||
|
|||||||
Reference in New Issue
Block a user