Front-End/Next.js
Next.js | ReferenceError: React is not defined
개발자티포
2023. 2. 8. 09:31
728x90
반응형
.babelrc 에 { "runtime" : "automatic" } 추가
- 전체코드
{
"presets": [
"next/babel",
[
"@babel/preset-env",
{
"targets": {
"chrome": "91",
"firefox": "89"
}
}
],
[
"@babel/preset-react",
{
"runtime": "automatic"
}
]
],
"plugins": [
"@emotion"
]
}
728x90
반응형