Nuxt.js 개발 build reload가 매우 느릴때
2021. 1. 27. 23:27ㆍTrouble Shooting
728x90
https://stackoverflow.com/questions/63246744/nuxt-2-14-0-hot-reload-is-slow
Nuxt.js 2.14.+ 사용 중이었는데, 개인 개발 컴은 사양이 어마 무시해서 그런지 엄청 빠른데
업무용 노트북이 비정상적으로 느려서 검색해보니, components를 자동으로 다량 import load 하고 있어서 해당 문제가 발생하였습니다.
이게 2.13이후 부터는 자동으로 요소를 로드해오는데,
npx create-nuxt-app으로 생성 시에 기본적으로 components: true로 설정돼버립니다.
false 또는 주석 처리하면 nuxt.js 2.13+ 사용 시 기본값이 false이기 때문에, 자동으로 적용이 됩니다.
설정하니 처음 빌드를 제외하고는 굉장히 빠른 속도를 보여줍니다...
18초 걸리던 게 1초 컷이 되었네요...
728x90
'Trouble Shooting' 카테고리의 다른 글
django.db.utils.ProgrammingError: (1146, "1146 (42S02): Table '.django_site' doesn't exist", '42S02') (0) | 2021.06.15 |
---|---|
Nuxt build exportOnlyLocals invalid option (0) | 2021.04.06 |
[GraphQL] ObservableQuery with this id doesn't exist (0) | 2020.12.18 |
@vue/apollo-composable define not defined (0) | 2020.12.17 |
JEST vue warn setup binding property "" is already declared as a prop (0) | 2020.12.09 |