Actualización de .gitignore para ignorar directorio zips/ y ajustes menores en landing
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1 +1,2 @@
|
|||||||
*.ps1
|
*.ps1
|
||||||
|
zips/
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -1,7 +1,12 @@
|
|||||||
import type { NextConfig } from "next";
|
import type { NextConfig } from "next";
|
||||||
|
|
||||||
const nextConfig: NextConfig = {
|
const nextConfig: NextConfig = {
|
||||||
/* config options here */
|
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;
|
export default nextConfig;
|
||||||
|
|||||||
180
mvp/b2c/public/b2b.html
Normal file
180
mvp/b2c/public/b2b.html
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user