다른 jQuery 버전을 사용해야합니다. 현재 Drupal은 jQuery 3.2.1을 사용하고 있지만 이전 버전이 필요합니다.
Drupal 7에서는 jQuery 업데이트 모듈을 사용하여 jQuery 버전을 쉽게 변경할 수 있습니다 . Drupal 8에서 어떻게 동일한 결과를 얻을 수 있습니까?
답변
mytheme.libraries.yml에 사용자 정의 jQuery 라이브러리를 추가하십시오.
jquery-custom:
remote: https://github.com/jquery/jquery
version: "2.2.4"
license:
name: MIT
url: https://github.com/jquery/jquery/blob/2.2.4/LICENSE.txt
gpl-compatible: true
js:
js/jquery-2.2.4.min.js: { minified: true, weight: -20 }
그런 다음 mytheme.info.yml에서 핵심 jQuery 라이브러리를 대체하십시오.
libraries-override:
# Replace an entire library.
core/jquery: mytheme/jquery-custom