MAKE IT SIMPLE

Error: Image Optimization using Next.js' default loader is not compatible with next export. 본문

React

Error: Image Optimization using Next.js' default loader is not compatible with next export.

punchlips 2022. 2. 10. 05:20

Next.js 앱을 처음 배포하는데 또 에러가 났다

// next.config.js
moduel.exports = {
    images: {
        loader: 'akamai',
        path: '/',
    }
}

next.config.js에 'akamai' 로더로 이미지를 불러와주면 해결된다 끝!

Comments