Skip to content
plutoin edited this page Jan 3, 2022 · 2 revisions

✔️ 문제 발생

웹 페이지에서 swiper 동작은 제대로 실행되나 입력한 메뉴가 여러 줄로 뜨는 오류 발견


✔️ 오류 원인

Swiper의 버전 문제로 확인됨


✔️ 해결 방법

라이브러리 코드 변경

  • 변경 전
  <link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css" />
  <script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
  • 변경 후
  <link rel="stylesheet" href="https://unpkg.com/swiper@6.8.4/swiper-bundle.min.css" />
  <script src="https://unpkg.com/swiper@6.8.4/swiper-bundle.min.js"></script>
Clone this wiki locally