Failed to compile.

./app/page.tsx
1:1  Warning: Unused eslint-disable directive (no problems were reported from '@typescript-eslint/no-unused-vars').

next js 개발하다보면 위에러를 종종 만날수가 있습니다.

저는 아래와 같이 eslint disable 해버립니다.

아래 문구를 추가해주시면 됩니다.~!

    rules: {
      'react/no-unescaped-entities': 'off',
      '@next/next/no-page-custom-font': 'off',
    },

+ Recent posts