9 lines
192 B
TypeScript
9 lines
192 B
TypeScript
import type { NextConfig } from "next";
|
||
|
||
const nextConfig: NextConfig = {
|
||
// 关闭左下角的开发指示器(dev overlay 角标)
|
||
devIndicators: false,
|
||
};
|
||
|
||
export default nextConfig;
|