css-loader:
@import and url() like import/require()style-loader:
<style> tags// This processes CSS files and injects them into the DOM
{
test: /\.css$/,
use: ['style-loader', 'css-loader']
}
For production, you might use MiniCssExtractPlugin.loader instead of style-loader to extract CSS into separate files.