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