25 lines
582 B
TypeScript
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;
|