U
U
uzi_no_uzi2019-09-05 14:37:25
webpack
uzi_no_uzi, 2019-09-05 14:37:25

How does webpack work in this case?

How does this code work, what does webpack do? If possible, then point by point
. In my understanding, first the code in the Webpack module is executed, it looks at the contents of the file, if it sees less there, then it applies less-loader
. Then the question arises, what does css-loader do?
The plugin, in my understanding, compresses all this and uploads it to the right folder
. If not, then correct

module: {
    rules: [
        {
            test: /\.less$/,
            use: [
                MiniCssExtractPlugin.loader,
                'css-loader',
                'less-loader'
            ]
        }
    ]
},
plugins: [
    new MiniCssExtractPlugin({
      filename: './css/style.css'
    }),
],

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question