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.
有人知道 webpack 中原始加载器与 url 加载器之间的区别吗?url 加载器是否与 raw 一样,除了以特定文件大小回退到文件加载器?
加载您在 css 文件中加载的图像url(./some-asset.jpg),将它们转换为 base64 并放置它们而不是 url() 语句。
url(./some-asset.jpg)
将文件加载为字符串,它不会将图像转换为 base64,并且更多地用于文本或 css 文件。