본문 바로가기
개발 프레임워크/Next.js

[Next.js] undefined, null strict모드 해제

by minhyeok.lee 2023. 4. 14.
반응형

tsconfig.json의 compilerOptions내부의 strictNullChecks를 false로 설정해주면 된다.

"compilerOptions": {

   ... 
    "strictNullChecks": false,

   ...

}
반응형

댓글