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>
17 lines
315 B
TypeScript
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;
|