import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  // The game has no server-side data, so export it as files Apache can serve
  // directly without a persistent Node/Vinext process.
  output: "export",
};

export default nextConfig;
