import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: 'export', trailingSlash: true, basePath: '/my-app/out', images: { unoptimized: true }, }; export default nextConfig;