场景:
比如 html中有些内联样式和外联样式,如何让打包后的外联样式,在内联样式上面呢 避免内联样式被覆盖
{
test: /\.css$/,
use: [
{
loader: 'style-loader',
options: {}
},
'css-loader'
]
}
已解决