I just spun up a new site and can confirm that it does look like it has something to do with Bootstrap and scss. Do you have any pointers to get back on track with scss and bootstrap?
I’m not sure. I’m not able to hit the error you’re describing, but I do hit this error related to trying to import Bootstrap after configuring stylelint:
│ resources/styles/app.css
│ 1:9 ✖ Expected ""bootstrap"" to be "url("bootstrap")" import-notation
│
Hopefully someone else who is actively using Bootstrap can chime in. I know that Sass no longer recommends using @import and has moved to @use, although Bootstrap themselves have not made the jump yet.
I fixed it… First off I didn’t have this installed yarn add @roots/bud-postcss --dev for some reason. Then I got the error you got and used @use rather than @import and I got things to compile with linting working. Thanks for your help in getting me pointed in the right direction.
Many bootstrap features are not usable with the suggested workaround. For example at-rules like include. I would suggest not using stylelint in conjunction with bootstrap and sass. I can do without it and cause myself even fewer problems.