7 lines
125 B
TypeScript
7 lines
125 B
TypeScript
import type { NextConfig } from 'next'
|
|
|
|
const nextConfig: NextConfig = {
|
|
devIndicators: false
|
|
}
|
|
|
|
export default nextConfig
|