Files
kovakemlak-crm/next.config.ts
T

42 lines
938 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
turbopack: {},
experimental: {
optimizePackageImports: ["@phosphor-icons/react"],
},
typescript: { ignoreBuildErrors: true },
images: {
remotePatterns: [
{ protocol: "https", hostname: "ui.shadcn.com" },
{ protocol: "https", hostname: "images.unsplash.com" },
{ protocol: "https", hostname: "db.kovaksoft.com" },
],
formats: ["image/webp", "image/avif"],
},
async headers() {
return [
{
source: "/(.*)",
headers: [
{ key: "X-Frame-Options", value: "DENY" },
{ key: "X-Content-Type-Options", value: "nosniff" },
{ key: "Referrer-Policy", value: "origin-when-cross-origin" },
],
},
];
},
async redirects() {
return [
{ source: "/home", destination: "/dashboard", permanent: true },
];
},
};
export default nextConfig;