myinfomate-landing/next.config.ts
Thomas Fransolet e2d8945b83 SEO upgrade
2026-04-26 09:54:53 +02:00

13 lines
237 B
TypeScript

import type { NextConfig } from "next";
import path from "node:path";
const nextConfig: NextConfig = {
output: "standalone",
reactCompiler: true,
turbopack: {
root: path.resolve(__dirname),
},
};
export default nextConfig;