Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
Either import styles into js, or point to the entry
path to styles and use mini-css-extract-plugin
.
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
module.exports = {
plugins: [new MiniCssExtractPlugin()],
module: {
rules: [
{
test: /\.css$/i,
use: [MiniCssExtractPlugin.loader, 'css-loader'],
},
],
},
};
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question