11 lines
179 B
TypeScript
11 lines
179 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
experimental: {
|
|
globalNotFound: true,
|
|
},
|
|
htmlLimitedBots: /.*/,
|
|
};
|
|
|
|
export default nextConfig;
|