Skip to content

Commit b008433

Browse files
authored
feat: Add Nosecone for security headers (#211)
1 parent 4309864 commit b008433

File tree

3 files changed

+72
-1
lines changed

3 files changed

+72
-1
lines changed

middleware.ts

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
import * as nosecone from "@nosecone/next";
2+
3+
const noseconeConfig: nosecone.NoseconeOptions = {
4+
...nosecone.defaults,
5+
contentSecurityPolicy: {
6+
...nosecone.defaults.contentSecurityPolicy,
7+
directives: {
8+
...nosecone.defaults.contentSecurityPolicy.directives,
9+
imgSrc: [
10+
...nosecone.defaults.contentSecurityPolicy.directives.imgSrc,
11+
"https://vercel.com", // Deploy button
12+
"https://www.netlify.com", // Deploy button
13+
],
14+
scriptSrc: [
15+
// We have to use unsafe-inline because next-themes and Vercel Analytics
16+
// do not support nonce
17+
// https://github.com/pacocoursey/next-themes/issues/106
18+
// https://github.com/vercel/analytics/issues/122
19+
//...nosecone.defaults.contentSecurityPolicy.directives.scriptSrc,
20+
"'self'",
21+
"'unsafe-inline'",
22+
"'unsafe-eval'",
23+
"https://plausible.io", // Analytics
24+
],
25+
connectSrc: [
26+
...nosecone.defaults.contentSecurityPolicy.directives.connectSrc,
27+
"https://plausible.io", // Analytics
28+
],
29+
// We only set this in production because the server may be started
30+
// without HTTPS
31+
upgradeInsecureRequests: process.env.NODE_ENV === "production",
32+
},
33+
},
34+
crossOriginEmbedderPolicy: {
35+
policy: "credentialless", // Allows embedding the deploy buttons
36+
},
37+
} as const;
38+
39+
const noseconeMiddleware = nosecone.createMiddleware(
40+
process.env.VERCEL_ENV === "preview"
41+
? nosecone.withVercelToolbar(noseconeConfig)
42+
: noseconeConfig,
43+
);
44+
45+
export default noseconeMiddleware;

package-lock.json

+25
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"@arcjet/ip": "^1.0.0-alpha.34",
3434
"@arcjet/next": "^1.0.0-alpha.34",
3535
"@hookform/resolvers": "^3.9.1",
36+
"@nosecone/next": "^1.0.0-alpha.34",
3637
"@radix-ui/react-label": "^2.1.1",
3738
"@radix-ui/react-slot": "^1.1.0",
3839
"@types/styled-components": "^5.1.34",
@@ -66,4 +67,4 @@
6667
"tailwindcss": "^3.4.17",
6768
"typescript": "^5"
6869
}
69-
}
70+
}

0 commit comments

Comments
 (0)