-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmiddleware.ts
More file actions
25 lines (21 loc) · 744 Bytes
/
Copy pathmiddleware.ts
File metadata and controls
25 lines (21 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import type { NextRequest } from 'next/server';
import { NextResponse } from 'next/server';
import { getProductIdBySlug } from 'lib/bigcommerce';
export async function middleware(request: NextRequest) {
const pageNode = await getProductIdBySlug(request.nextUrl.pathname);
if (pageNode?.__typename === 'Product') {
return NextResponse.rewrite(new URL(`/product/${pageNode.entityId}`, request.url));
}
}
export const config = {
matcher: [
/*
* Match all request paths except for the ones starting with:
* - api (API routes)
* - _next/static (static files)
* - _next/image (image optimization files)
* - favicon.ico (favicon file)
*/
'/((?!api|_next/static|_next/image|favicon.ico).*)'
]
};