『Nuxt.js』Failed to execute 'appendChild' on 'Node': This node type does not support this method.
2020. 9. 16. 00:27ㆍTrouble Shooting
728x90
Nuxt.js에서 Generate를 사용하여 Product 환경에 배포하려고 할 때 발생되는 현상으로,
많은 사람들의 의견이 갈리는데 대체로 $nuxt에서 html 구조를 이상한태그를 추가하여 발생하는 오류라고 합니다.
때문에 번들링에서 생기는 오류로써 이를 해결하기 위해서는
gulp 같은 방식을 사용해야 하는데 따로 설치를 하지 않고도 처리를 진행할 수 있는 방법이
nuxt에서는 가능합니다.
github.com/nuxt/nuxt.js/issues/5800#issuecomment-570110683
해당 Github #5800 Issue에서는 본 내용에대해서 엄청 많은 답글이 달려있으며 저의 경우는 위 링크에 해당 코멘트를 통해서 해결이 가능했습니다.
module.exports = {
build: {
html: {
minify: {
collapseWhitespace: true, // as @dario30186 mentioned
removeComments: true, // 👈 add this line
},
},
},
};
728x90
'Trouble Shooting' 카테고리의 다른 글
Nuxt-ts Invalid component name: "_id" (0) | 2020.11.01 |
---|---|
TS2307: Cannot find module '@/components/*' or its corresponding type declarations. (0) | 2020.10.26 |
FCM Foreground doesn't work (0) | 2020.09.10 |
GORM Preload시 pk말고 다른 키 지정하기 (0) | 2020.09.09 |
GORM v1 Create시 UpdatedAt Nil(Null)값 할당하기 (0) | 2020.07.29 |