23 lines
489 B
TypeScript
23 lines
489 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
images: {
|
|
unoptimized: true,
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "be.inatrading.co.id",
|
|
},
|
|
{
|
|
protocol: "http",
|
|
hostname: "203.175.11.191",
|
|
},
|
|
],
|
|
dangerouslyAllowSVG: true,
|
|
contentDispositionType: "attachment",
|
|
contentSecurityPolicy: "default-src 'self'; script-src 'none'; sandbox;",
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|