.Net Core MVC Third-party Libraries

.Net Core MVC Starter Project includes all Third-party libraries by default.


Optionally you can remove unwanted plugins to reduce output assets size and compile time:

  1. Remove unwanted packages from the dependencies section in the AspnetCoreMvcStarter/package.json file.
  2. Remove related directories from AspnetCoreMvcStarter/src/libs directory.
  3. Remove related @imports and @includes from AspnetCoreMvcStarter/src/scss/_theme/_libs.scss file.

For example, if you want to exclude swiper plugin, you will need to:

  1. Remove swiper dependency in the AspnetCoreMvcStarter/package.json file.
  2. Remove the AspnetCoreMvcStarter/src/libs/swiper directory.
  3. Remove below lines from AspnetCoreMvcStarter/src/scss/_theme/_libs.scss file.
  4. ...
    @import "../../libs/swiper/mixins";
    ...
      ...
      @include swiper-theme($background);
      ...
  5. Compile Assets as described here
© 2017- ThemeSelection, Hand-crafted & Made with ❤️