I'm in the process of customizing Bootstrap using my own styles, by utilizing a local version of the source SASS files as outlined in the official documentation, and importing them into a custom.scss
file.
My main focus is on altering the visual aspects rather than the functionality; things like colors, typography, and the configurable "Sass options".
In this particular situation, I'm curious if there are any drawbacks or potential issues with importing the JavaScript portion of Bootstrap (specifically bootstrap.bundle.min.js
) into my project via a CDN instead of keeping it local.
EDIT: Just to clarify, my question is not about the differences between loading resources from a CDN versus locally, but rather if mixing CDN and local sources for different parts of Bootstrap could cause any problems or unexpected behavior.
I realize this may be a basic question, and I'm fairly confident I can proceed without any issues, but I'd appreciate input from someone with more expertise in this area.