When using postcss, in webpack, how to make it ignore the files under node_modules?

add postcss to webpack , use px2rem automatic conversion units

then I introduced antd-mobile

result px2rem transforms the style of antd-mobile

how to make px2rem ignore antd-mobile style files

Have you solved the problem of
exclude: [
  path.resolve(__dirname, "node_modules/xxx")
],

?

Menu