-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiddleware.ts
39 lines (31 loc) · 1.06 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
import type { NextRequest } from "next/server";
import { NextResponse } from "next/server";
import generateCspPolicy from "nextjs/csp/generateCspPolicy";
import * as middlewares from "nextjs/middlewares/index";
const cspPolicy = generateCspPolicy();
export function middleware(req: NextRequest) {
const isPageRequest = req.headers.get("accept")?.includes("text/html");
const start = Date.now();
if (!isPageRequest) {
return;
}
const accountResponse = middlewares.account(req);
if (accountResponse) {
return accountResponse;
}
const end = Date.now();
const res = NextResponse.next();
res.headers.append("Content-Security-Policy", cspPolicy);
res.headers.append("Server-Timing", `middleware;dur=${end - start}`);
res.headers.append("Docker-ID", process.env.HOSTNAME || "");
return res;
}
/**
* Configure which routes should pass through the Middleware.
*/
export const config = {
matcher: ["/", "/:notunderscore((?!_next).+)"],
// matcher: [
// '/((?!.*\\.|api\\/|node-api\\/).*)', // exclude all static + api + node-api routes
// ],
};