I have recently launched a small asp.net core website. Right now, all JS/CSS imports are from NPM and I am using webpack to bundle them together.
Instead of sticking with the standard bootstrap template, I wanted to switch to bootswatch paper, but unfortunately, I couldn't find any package to replace the default template.
Some suggest simply replacing the bootstrap.css file, but since mine is sourced from a package and not in my git repository, it seems impractical to create a separate bootstrap.css file and reference it. What happens when bootstrap gets updated along with the plugin? Do I have to manually update every time?
This doesn't seem like the most effective solution. Any advice on how to properly install bootswatch then? (My website was generated through JavascriptServices
).