import type { NextConfig } from "next"; const nextConfig: NextConfig = { distDir: "build", output: "standalone", images: { remotePatterns: [ { protocol: "https", hostname: "tr.rbxcdn.com", pathname: "/**", port: "", search: "", }, ], }, }; export default nextConfig;