Files
tm-landing/next.config.ts
T
2026-06-17 13:51:49 +03:30

11 lines
179 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
experimental: {
globalNotFound: true,
},
htmlLimitedBots: /.*/,
};
export default nextConfig;