13 lines
297 B
TypeScript
13 lines
297 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
async rewrites() {
|
|
return [
|
|
// Landing B2B estática (mvp/b2b) servida en /b2b. El fichero vive en public/b2b.html.
|
|
{ source: "/b2b", destination: "/b2b.html" },
|
|
];
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|