Files

101 lines
2.4 KiB
TypeScript
Raw Permalink Normal View History

2026-06-27 17:08:38 +02:00
import type { NextConfig } from "next";
import { PORTABASE_DEFAULT_SETTINGS } from "./portabase.config";
2025-07-25 21:41:28 +02:00
2026-02-10 20:25:54 +01:00
const isDev = process.env.NODE_ENV === "development";
2025-07-25 21:41:28 +02:00
function buildCSPHeader(): string {
2026-06-27 17:08:38 +02:00
const { CSP } = PORTABASE_DEFAULT_SETTINGS.SECURITY;
2025-07-25 21:41:28 +02:00
2026-06-27 17:08:38 +02:00
const directives = [
`default-src ${CSP.DEFAULT_SRC.join(" ")}`,
`script-src ${CSP.SCRIPT_SRC.join(" ")}`,
`style-src ${CSP.STYLE_SRC.join(" ")}`,
`img-src ${CSP.IMG_SRC.join(" ")}`,
`font-src ${CSP.FONT_SRC.join(" ")}`,
`object-src ${CSP.OBJECT_SRC.join(" ")}`,
`connect-src ${CSP.CONNECT_SRC.join(" ")}`,
`base-uri ${CSP.BASE_URI.join(" ")}`,
`form-action ${CSP.FORM_ACTION.join(" ")}`,
`frame-ancestors ${CSP.FRAME_ANCESTORS.join(" ")}`,
];
2025-07-25 21:41:28 +02:00
2026-06-27 17:08:38 +02:00
if (CSP.BLOCK_ALL_MIXED_CONTENT) {
directives.push("block-all-mixed-content");
}
2025-07-25 21:41:28 +02:00
2026-06-27 17:08:38 +02:00
if (CSP.UPGRADE_INSECURE_REQUESTS) {
directives.push("upgrade-insecure-requests");
}
2025-07-25 21:41:28 +02:00
2026-06-27 17:08:38 +02:00
return directives.join("; ");
2025-07-25 21:41:28 +02:00
}
function buildPermissionsPolicy(): string {
2026-06-27 17:08:38 +02:00
return Object.entries(PORTABASE_DEFAULT_SETTINGS.SECURITY.PERMISSIONS_POLICY)
.map(([feature, values]) => `${feature.toLowerCase()}=${values.join(", ")}`)
.join(", ");
2025-07-25 21:41:28 +02:00
}
2025-05-16 15:54:17 +02:00
const nextConfig: NextConfig = {
2026-06-27 17:08:38 +02:00
output: "standalone",
devIndicators: false,
typescript: {
ignoreBuildErrors: true,
},
logging: {
browserToTerminal: false,
},
experimental: {
serverActions: {
bodySizeLimit: "10gb",
2024-12-31 16:42:19 +01:00
},
2026-06-27 17:08:38 +02:00
proxyClientMaxBodySize: "10gb",
},
async rewrites() {
if (!isDev) return [];
2026-02-10 20:25:54 +01:00
2026-06-27 17:08:38 +02:00
return [
{
source: "/tus/:path*",
destination: "http://localhost:1080/tus/:path*",
},
];
},
2026-02-10 20:25:54 +01:00
2026-06-27 17:08:38 +02:00
async headers() {
return [
{
source: "/(.*)",
headers: [
{
key: "Content-Security-Policy",
value: buildCSPHeader(),
},
{
key: "Permissions-Policy",
value: buildPermissionsPolicy(),
},
{
key: "X-Content-Type-Options",
value: "nosniff",
},
{
key: "X-Frame-Options",
value: "DENY",
},
{
key: "Referrer-Policy",
value: "strict-origin-when-cross-origin",
},
{
key: "Strict-Transport-Security",
value: "max-age=63072000; includeSubDomains; preload",
},
],
},
];
},
2024-12-31 16:42:19 +01:00
};
2024-11-03 11:30:44 +01:00
export default nextConfig;