Url-loader vs File-loader Webpack

后端 未结 2 570
北海茫月
北海茫月 2020-12-23 19:34

I\'m trying to figure out the difference between url-loader vs file-loader. What does DataURl mean?

The url-loader works like the file-lo

2条回答
  •  离开以前
    2020-12-23 19:55

    url-loader will encode files to base64 and include them inline rather than having them loaded as separate files with another request.

    A base64 encoded file may look something like this:

    data:;base64,aW1wb3J0IFJlYWN0IGZ...
    

    This would be added into your bundle.

提交回复
热议问题