강의

멘토링

커뮤니티

Inflearn Community Q&A

sundown7107091's profile image
sundown7107091

asked

Practical React Programming

Getting started with create-react-app

data.json 파일을 임포트했는데 chunk.js 파일이 생성된 이유가 궁금합니다.

Written on

·

331

0

chunk 네이밍이 어디서 온것이고 json도 아니고 js로 파일이 생성되는 이유가 궁금합니다.

reduxreact

Answer 2

0

sundown710님의 프로필 이미지
sundown710
Questioner

넵 답변해주셔서 감사합니다

0

landvibe님의 프로필 이미지
landvibe
Instructor

안녕하세요
chunk 네이밍은 웹팩 설정에 있습니다.
그리고 json 이 아니라 js 인 이유는 import 가 js 만 처리할 수 있기 때문입니다
빌드 시 웹팩이 json 파일을 js 파일로 변환하게 됩니다

sundown7107091's profile image
sundown7107091

asked

Ask a question