What does a `~` tilde in a CSS `url()` do?
The CSS @import path <url> is usually relative to the current working directory. So using the prefix ~ at the start of the path tells Webpack’s css-loader to resolve the import “like a module”, starting from the node_modules directory. What that means is that if you have a node module called normalize installed, and you … Read more