I have learnt few methods before for this Github pull-request issue.
First, change the file name. Easiest way but ugly.
Change your styles.css
to styles.m.css
and separate module and plain css like
//Moduletest: /\.m.css$///Plaintest: /\^((?!\.m).)*css$/
Second, separate the folders for module and plain css, while exclude each other.
//Moduleexclude: /css/plain///Plainexclude: /css/module/
Third, use resourceQuery
test: /\.css$/,oneOf: [{ resourceQuery: /^\?raw$/, use: [...]}
And import as
import './bootstrap.min.css?raw'