mirror of
https://git.meshkee.com/Meshkee-Websites/oaktasty.git
synced 2026-08-11 20:50:57 +04:30
12 lines
273 B
TypeScript
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;
|