gohorsejobs/frontend/next.config.ts
2026-02-11 13:24:12 +00:00

25 lines
582 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
// Performance optimizations
poweredByHeader: false,
compress: true,
// Allow dev server behind proxy
allowedDevOrigins: ["https://dev.gohorsejobs.com"],
// Optional: Configure allowed image domains
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
],
qualities: [25, 50, 75, 80, 90, 100],
},
};
export default nextConfig;