import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  // Static export — outputs plain HTML/CSS/JS into `out/` for cPanel hosting.
  output: "export",
  // Required for static export: no Next.js image server, serve images as-is.
  images: { unoptimized: true },
  // Clean URLs as folders (so /privacy -> /privacy/index.html).
  trailingSlash: true,
  turbopack: {
    root: __dirname,
  },
};

export default nextConfig;
