【问题标题】:How do you selectively inline an SVG in CSS with Webpack 5?如何使用 Webpack 5 选择性地在 CSS 中内联 SVG?
【发布时间】:2021-11-23 06:07:00
【问题描述】:

我正在使用 Webpack 5 将我的 SCSS 编译为 CSS。我想有选择地内联一些 SVG。理想情况下,我希望通过文件名、路径或 URL 中的某些查询参数来实现。

假设我有以下 SCSS:

/* src/scss/main.scss */
.logo {
    background-image: url('/images/logo.svg');
}

还有这个webpack.config.js

const path = require('path');

const MiniCssExtractPlugin = require('mini-css-extract-plugin');

const src_dir = path.resolve(__dirname, "src");

module.exports = {
    entry: {
        "styles": path.resolve(__dirname, "src/scss/main.scss")
    },
    output: {
        clean: true,
        path: path.resolve(__dirname, "dist"),
        publicPath: "",
    },
    module: {
        rules: [ ... ]
    },
    plugins: [
        // Extract the generated CSS from the JS-CSS into actual CSS.
        new MiniCssExtractPlugin({
            filename: "[name].[contenthash].css"
        }),
    ]
}

如果相关,这是我将 SCSS 编译为 CSS 的规则:

{
    test: /\.scss$/,
    use: [
        // Extract the generated CSS from the JS-CSS into actual CSS.
        {
            loader: MiniCssExtractPlugin.loader,
            options: {
                esModule: false,
            }
        },
        {
            loader: 'css-loader',
        },
        // Compile SCSS to JS-CSS.
        {
            loader: 'sass-loader',
            options: {
                sassOptions: {},
                sourceMap: true
            }
        }
    ]
},

这是我目前的资产规则:

{
    test: /\.(jpg|png|svg)$/,
    type: "asset/resource",
    generator: {
        // Do not copy the asset to the output directory.
        emit: false,
        // Rewrite asset filesystem path to be relative to the asset public path.
        filename: (pathData) => {
            const file = pathData.module.resource;
            if (file.startsWith(`${src_dir}/`)) {
                return path.relative(src_dir, file);
            }
            throw new Error(`Unexpected asset path: ${file}`);
        },
        // The public path (prefix) for assets.
        publicPath: "/a/",
    }
}

如何将新规则配置为仅内联 logo.svg?根据我收集到的信息,我需要以下内容:

{
    test: /\.svg$/,
    type: "asset/inline",
    // ... some unknown webpack-fu.
},

但是从这里我该怎么办? webpack documentation 非常缺乏任何有用的 CSS 示例。这不是使用 require() 导入每个资产的 JavaScript 应用程序。我只使用 SCSS/CSS。

【问题讨论】:

    标签: webpack css-loader sass-loader webpack-5


    【解决方案1】:

    我很接近。您可以将?inline 作为查询参数添加到 SVG URL:

    /* src/scss/main.scss */
    .logo {
        background-image: url('/images/logo.svg?inline');
    }
    

    /inline/ 添加为内联规则中的resourceQuery

    {
        test: /\.svg$/,
        type: "asset/inline",
        // Inline assets with the "inline" query parameter.
        resourceQuery: /inline/,
    },
    

    并使用oneOf 包装资产规则,以便在一般资源规则之前优先考虑内联标记的 SVG:

    module.exports = {
        // ...
        module: {
            rules: [
                // ...
                {oneOf: [
                    {
                        test: /\.svg$/,
                        type: "asset/inline",
                        // ...
                    },
                    {
                        test: /\.(jpg|png|svg)$/,
                        type: "asset/resource",
                        // ...
                    },
                ]},
                // ...
            ]
        },
        // ...
    };
    

    【讨论】:

      猜你喜欢
      • 2016-03-19
      • 2020-03-02
      • 1970-01-01
      • 2016-11-16
      • 2015-12-22
      • 2013-11-28
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多