Files
oaktasty/next.config.ts
T
2026-08-08 10:41:35 +03:30

12 lines
273 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
images: {
dangerouslyAllowSVG: true,
contentDispositionType: "attachment",
contentSecurityPolicy: "default-src 'self'; script-src 'none'; sandbox;",
},
};
export default nextConfig;