Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
resolve-url-loader
Advanced tools
Webpack loader that resolves relative paths in url() statements based on the original source file
The resolve-url-loader package is a webpack loader that resolves relative paths in url() statements based on the original source file. This is particularly useful when dealing with source maps and pre-processors like Sass, as it allows assets referenced in CSS to be correctly found and bundled by webpack.
Resolving relative URLs
This feature allows resolve-url-loader to adjust relative paths in url() statements so that they point to the correct location in a webpack build. The code sample shows how to include resolve-url-loader in a webpack configuration.
module.exports = {
module: {
rules: [
{
test: /\.css$/,
use: [
'style-loader',
'css-loader',
'resolve-url-loader'
]
}
]
}
};
Source map support
resolve-url-loader can handle source maps, which is essential for debugging processed stylesheets like those written in Sass. The code sample demonstrates how to enable source map support in webpack loaders, including resolve-url-loader.
module.exports = {
module: {
rules: [
{
test: /\.scss$/,
use: [
'style-loader',
{
loader: 'css-loader',
options: { sourceMap: true }
},
{
loader: 'resolve-url-loader',
options: { sourceMap: true }
},
{
loader: 'sass-loader',
options: { sourceMap: true }
}
]
}
]
}
};
file-loader resolves import/require() on a file into a url and emits the file into the output directory. It's similar to resolve-url-loader in that it helps with asset management, but it doesn't resolve relative URLs based on the original source file.
url-loader works like file-loader but can return a DataURL if the file is smaller than a byte limit. It's similar to resolve-url-loader as it deals with URLs in CSS and other files, but it doesn't specifically address the resolution of relative paths.
This webpack loader allows you to have a distributed set SCSS files and assets co-located with those SCSS files.
Where are your assets?
How complicated is your SASS?
@mixin
s.What asset paths are you using?
url(./foo.png)
or url(foo.png)
url(/foo.png)
url(~stuff/foo.png
)url($variable/foo.png)
What webpack errors are you getting?
foo.png
😞fully/resolved/path/foo.png
😕If you can tick at least 1 item in all of these questions then use this loader. It will allow webpack to find assets with fully relative paths.
If for any question you can't tick any items then webpack should be able to already find your assets. You don't need this loader. 🤷
Once webpack resolves your assets (even if it complains about loading them) then this loading is working correctly. 👍
When you use fully relative paths in url()
statements then Webpack expects to find those assets next to the root SCSS file, regardless of where you specify the url()
.
To illustrate here are 3 simple examples of SASS and Webpack without resolve-url-loader
.
The first 2 cases are trivial and work fine. The asset is specified in the root SCSS file and Webpack finds it.
But any practical SASS composition will have nested SCSS files, as in the 3rd case. Here Webpack cannot find the asset.
Module not found: Can't resolve './cool.png' in '/absolute/path/.../my-project/src/styles.scss'
The path we present to Webpack really needs to be ./subdir/cool.png
but we don't want to write that in our SCSS. 😒
Luckily we can use resolve-url-loader
to do the url re-writing and make it work. 😊🎉
With functions and mixins and multiple nesting it gets more complicated. Read more detail in how the loader works. 🤓
Upgrading? the changelog shows how to migrate your webpack config.
via npm
npm install resolve-url-loader --save-dev
via yarn
yarn add resolve-url-loader --dev
The typical use case is resolve-url-loader
between sass-loader
and css-loader
.
⚠️ IMPORTANT
resolve-url-loader
(regardless of devtool
).-loader
) otherwise you can get errors that are hard to debug.rules: [
{
test: /\.scss$/,
use: [
...
{
loader: 'css-loader',
options: {...}
}, {
loader: 'resolve-url-loader',
options: {...}
}, {
loader: 'sass-loader',
options: {
sourceMap: true,
sourceMapContents: false
}
}
]
},
...
]
The loader should work without options but use these as required.
option | type | default | description | |
---|---|---|---|---|
sourceMap | boolean | false | Generate an outgoing source-map. | |
removeCR | boolean | true Windows OSfalse otherwise | Convert orphan CR to whitespace. See known issues below. | |
debug | boolean | false | Display debug information. | |
silent | boolean | false | Do not display warnings or deprecation messages. | |
root | string | unset | Similar to the (now defunct) option in css-loader .This string, possibly empty, is prepended to absolute URIs. Absolute URIs are only processed if this option is set. | |
join | function | inbuilt | advanced | Custom join function. Use custom javascript to fix asset paths on a per-case basis. Refer to the advanced features docs. |
engine | 'rework' 'postcss' | 'postcss' | deprecated | The css parser engine. Using this option produces a deprecation warning. |
Tested macOS
and Windows
.
All webpack2
-webpack4
with contemporaneous loaders/plugins using node 8.9
. And webpack5
with latest loaders/plugins using node 10.0
.
Refer to test
directory for full webpack configurations as used in automated tests.
Some edge cases with libsass
on Windows
(see troubleshooting docs).
Read the troubleshooting docs before raising an issue.
FAQs
Webpack loader that resolves relative paths in url() statements based on the original source file
The npm package resolve-url-loader receives a total of 6,171,131 weekly downloads. As such, resolve-url-loader popularity was classified as popular.
We found that resolve-url-loader demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.