Files
w-make-portfolio/next.config.ts
T
Jan WagnerandCursor 5657b1d202 feat(portfolio): rebuild w-make.com as a bilingual editorial studio
Give clients a real IA, SMTP contact to eldov@w-make.de, and live Batch
evidence instead of a single-page placeholder.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-16 03:20:16 +02:00

17 lines
315 B
TypeScript

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;