8 lines
119 B
TypeScript
8 lines
119 B
TypeScript
import type { NextConfig } from 'next'
|
|
|
|
const config: NextConfig = {
|
|
reactStrictMode: true,
|
|
}
|
|
|
|
export default config
|