작성
·
761
0
답변 2
0
답변 감사합니다.
error - ./node_modules/@ckeditor/ckeditor5-block-quote/theme/blockquote.css
Global CSS cannot be imported from within node_modules.
Read more: https://nextjs.org/docs/messages/css-npm
Location: node_modules\@ckeditor\ckeditor5-block-quote\src\blockquoteui.js
라고 에러가 뜨네요. 커스터마이징하는 과정중 webpack을 건드리는 부분이있어서 next.config.js를 사용합니다.
그 과정때문인지 에러가 뜨네요.
0
ckeditor을 쓴다고 해서 next와 문제가 생길 이유는 없지 않나요? react에 붙이듯 그대로 하면 될 것 같습니다.
css도 그냥 _app.js에서 import하면 같이 들어가지 않나요?
에러 메시지 내용 그대로입니다. css는 node_modules에서부터 임포트하지 못한다고 되어있네요. 그냥 import '@ckeditor/ckeditor5-block-quote/theme/blockquote.css'; 하거나, 이게 안 된다면 파일을 복사한 후에 node_modules 바깥에 붙여넣고 import 하세요.