import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: "standalone", async redirects() { return [ { source: "/projects/batchmaker-studio", destination: "/arbeit/batchmaker-studio", permanent: true, }, ]; }, }; export default nextConfig;