“!!” 在 webpack 4 中的 file-loader 前面是什么作用?

huangapple go评论58阅读模式
英文:

What does "!!" before file-loader do in webpack 4?

问题

无法找到关于 !! 的文档:

英文:

Can't find any docs around the !! in:

const styles = require('!!file-loader!./styles.css');

答案1

得分: 1

在Webpack 4中,webpack配置文件中loader前面的"!!"被称为"bang-bang" loader语法。它用于覆盖webpack配置文件中特定loader的配置。

这是官方Webpack文档关于loaders的链接:
https://webpack.js.org/concepts/loaders/#inline

你可以在一个名为"Inline"的部分找到说明如何使用"bang-bang" loader语法来覆盖loader配置的内容。

英文:

In Webpack 4, the "!!" before a loader in the webpack configuration file is called the "bang-bang" loader syntax. It is used to override the configuration specified in the webpack configuration file for a specific loader.

Here's the link to the official Webpack documentation on loaders:
https://webpack.js.org/concepts/loaders/#inline

you can find a section called "Inline" that explains how to use the "bang-bang" loader syntax to override loader configuration.

huangapple
  • 本文由 发表于 2023年4月20日 01:07:31
  • 转载请务必保留本文链接:https://go.coder-hub.com/76057144.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定