After setting up Bootstrap along with webpack, I encountered a problem where no Bootstrap styling or CSS was being applied when running my application.
The configuration in my webpack.config.js file is as follows:
// JavaScript imports here
Upon checking the browser console, I found this error message:
Uncaught Error: Module build failed (from ./node_modules/mini-css-extract-plugin/dist/loader.js):
ModuleBuildError: Module build failed (from ./node_modules/css-loader/dist/cjs.js):
CssSyntaxError
(192:1) Unknown word
I'm currently unsure of the root cause of this error and where it originates from. Any guidance would be greatly appreciated.