강의

멘토링

커뮤니티

Inflearn Community Q&A

qwer1234's profile image
qwer1234

asked

First Encounter with Redux

(Practice) Counter application

counter 예제에서 script로 redux를 CDN으로 불러올 때

Written on

·

471

1

counter 예제에서 script로 redux를 CDN으로 불러올 때
404가 나는 것 같습니다!

<script src="https://unpkg.com/browse/redux@5.0.1/dist/redux.mjs"></script>


위와 같이 수정했는데 Redux를 찾을 수 없다고 나오네요..!
혹시 뭐가 문제일까요 ?

reactreduxredux-thunkredux-toolkitredux-saga

Answer 1

0

soaple님의 프로필 이미지
soaple
Instructor

안녕하세요, 소플입니다.

 

확인해보니 Redux 버전 5.0.1의 CDN 링크가 깨져있는 것 같네요~

우선 아래 4.2.1버전으로 실습을 진행해보시기 바랍니다!

https://unpkg.com/redux@4.2.1/dist/redux.min.js

 

감사합니다.

qwer1234님의 프로필 이미지
qwer1234
Questioner

주말임에도 빠른 답변 감사드립니다

qwer1234's profile image
qwer1234

asked

Ask a question