webpack使用css-loader时为什么不需要引入?

发布于 2022-09-06 04:50:23 字数 244 浏览 13 评论 0

module.exports = {
  module: {
    rules: [
      {
        test: /\.css$/,
        use: [ 'style-loader', 'css-loader' ]
      }
    ]
  }
}

在webpack的配置文件中 直接就是用了css-loader
而没有使用require或者import去引入
这是为什么呢?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

傲影 2022-09-13 04:50:23

你并没有直接用啊,你只是告诉webpack要用这个东西,怎么用是它的机制。

娜些时光,永不杰束 2022-09-13 04:50:23

Referencing loaders By convention, though not required, loaders are
usually named as XXX-loader, where XXX is the context name. For
example, json-loader.

You may reference loaders by its full (actual) name (e.g.
json-loader), or by its shorthand name (e.g. json).

The loader name convention and precedence search order is defined by
resolveLoader.moduleTemplates within the webpack configuration API.

Loader name conventions may be useful, especially when referencing
them within require() statements; see usage below.

方档里有解释啊

最美的太阳 2022-09-13 04:50:23

loader 和你的 import xxx 不是一个东西。

loader实际上是webpack本身会去调用或者应用的函数而已,本质上,webpack 调用loader的方法是 loader-runner 也就是说,当你在webpack中配置了loader之后,它自身会在需要的地方加载你的loader,加载的方式就是:https://github.com/webpack/lo...

看你说没有啥文档,在loader-api里面就有说明:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文