How does css loader resolve resources in webpack
问题 I was learning about css-loader in webpack, the defination says that The css-loader interprets @import and url() like import/require() and will resolve them. What does it mean, In an example in the documentaion there is url(image.png) => require('./image.png') So my question is will it convert url('./image.png') to require('image.png') For example in a css file if i have background property as #selector{ background:url('./image.png'); //this is a vlid css property } will the above style