Django Starter Project includes all Third-party libraries by default.
Optionally you can remove unwanted plugins to reduce output assets size and compile time:
starter-kit/src/package.json file.
starter-kit/src/assets/vendor/libs directory.@imports and @includes from
starter-kit/src/assets/vendor/scss/_theme/_libs.scss file.
For example, if you want to exclude swiper plugin, you will need to:
swiper dependency in the starter-kit/src/package.json file.starter-kit/src/assets/vendor/libs/swiper directory.starter-kit/src/scss/_theme/_libs.scss file....
@import "../../libs/swiper/mixins";
...
...
@include swiper-theme($background);
...