As I transitioned from using Bootstrap 4 via NPM to trying out the bootstrap CDN for my project, I encountered a roadblock. Previously, in my main SASS file, I would declare the grid-gutter-width as $grid-gutter-width: 26px !default; before importing the Bootstrap package.
Now, with the bootstrap CDN linked just before the closing </body> tag and no import in my app.scss, I found myself unable to set or override the grid gutter width effectively. Despite declaring the grid gutter width as before, the gutter continued to display at 30px (15px on each side of the column).
This begs the question - am I missing something in this process, or is it simply not feasible to customize the grid settings when utilizing the CDN?