-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiddleware.ts
45 lines (38 loc) · 1.33 KB
/
middleware.ts
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import { NextRequest, NextResponse } from 'next/server'
export const config = {
matcher: [
/*
* Match all paths except for:
* 1. /api routes
* 2. /_next (Next.js internals)
* 3. /_static (inside /public)
* 4. /.well-known (inside /public)
* 5. all root files inside /public (e.g. /favicon.ico)
*/
'/((?!api/|_next/|_static/|.well-known/|_vercel|[\\w-]+\\.\\w+).*)',
],
}
export default async function middleware(req: NextRequest) {
const url = req.nextUrl
// Get hostname of request (e.g. demo.vercel.pub, demo.localhost:3000)
const hostname = req.headers
.get('host')!
.replace('.localhost:3000', `.${process.env.NEXT_PUBLIC_ROOT_DOMAIN}`)
// Get the pathname of the request (e.g. /, /about, /blog/first-post)
const path = url.pathname
// rewrites for app pages
if (hostname == `app.${process.env.NEXT_PUBLIC_ROOT_DOMAIN}`) {
return NextResponse.rewrite(
new URL(`/app${path === '/' ? '' : path}`, req.url)
)
}
// rewrite root application to `/home` folder
if (
hostname === 'localhost:3000' ||
hostname === process.env.NEXT_PUBLIC_ROOT_DOMAIN
) {
return NextResponse.rewrite(new URL(`/home${path}`, req.url))
}
// rewrite everything else to `/sell/[domain] dynamic route
return NextResponse.rewrite(new URL(`/sell/${hostname}`, req.url))
}