webpack中的mini-css-extract-plugin


本文作者: jsweibo

本文链接: https://jsweibo.github.io/2019/08/17/webpack%E4%B8%AD%E7%9A%84mini-css-extract-plugin/

摘要

本文主要讲述了:

  1. 作用
  2. 安装
  3. 配置

正文

作用

将被打包进 JavaScript 文件的 CSS 剥离出来形成独立的 CSS 文件。

安装

1
2
3
#!/usr/bin/env bash

npm install --save-dev mini-css-extract-plugin

配置

publicPath

声明 CSS 文件中资源文件的公共路径。

示例:

learn_webpack/webpack.config.js

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
module.exports = {
module: {
rules: [
{
test: /\.s[ac]ss$/,
use: [
{
loader: MiniCssExtractPlugin.loader,
options: {
publicPath: 'https://google.com',
},
},
{
loader: 'css-loader',
options: {
importLoaders: 2,
},
},
{
loader: 'postcss-loader',
},
{
loader: 'sass-loader',
},
],
},
{
test: /\.(png|jpe?g|gif)$/,
use: [
{
loader: 'url-loader',
options: {
limit: 80,
},
},
],
},
{
test: /\.(woff|woff2|eot|ttf|otf)$/,
use: [
{
loader: 'file-loader',
},
],
},
],
},
plugins: [new MiniCssExtractPlugin()],
};

源文件:

1
2
3
4
5
6
7
@font-face {
font-family: 'PingFang SC Regular';
src: url('PingFang SC Regular.ttf');
}
body {
background-image: url('foo.png');
}

输出:

1
2
3
4
5
6
7
@font-face {
font-family: 'PingFang SC Regular';
src: url('https://google.com/445202121dc65088036c94cde6f9ef6f.ttf');
}
body {
background-image: url('https://google.com/fb6b55d9ad5ecdc4d46baa0ad338299d.png');
}

filename

输出的 CSS 文件的名称。

示例:

1
2
3
4
5
6
7
module.exports = {
plugins: [
new MiniCssExtractPlugin({
filename: '[name].css',
}),
],
};

参考资料

本文作者: jsweibo

本文链接: https://jsweibo.github.io/2019/08/17/webpack%E4%B8%AD%E7%9A%84mini-css-extract-plugin/


本文对你有帮助?请支持我


支付宝
微信