Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要@import一个来自 LESS 的外部管理 URL,并且正在使用 WebPack,但我无法弄清楚如何去做。
@import
具体来说,我需要@import一些来自 myfonts.net 的 URL 才能使用它们的许可。
我基本上是在做以下事情: @import url("//myfonts.net");
@import url("//myfonts.net");
但是 WebPack 正在本地查找文件,而不是导入 URL。
我认为问题在于css-loader尝试在本地解析文件,但我不确定如何指示css-loader根本不解析 URL。
css-loader
您可以从加载程序配置中排除文件:
{ test: /\.css$/, exclude: /^(https?:)?\/\//, loader: 'style!css'},