Socket
Socket
Sign inDemoInstall

resolve-url-loader

Package Overview
Dependencies
12
Maintainers
1
Versions
51
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    resolve-url-loader

Webpack loader that resolves relative paths in url() statements based on the original source file


Version published
Weekly downloads
7.4M
decreased by-1.46%
Maintainers
1
Install size
1.74 MB
Created
Weekly downloads
 

Package description

What is resolve-url-loader?

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.

What are resolve-url-loader's main functionalities?

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 }
          }
        ]
      }
    ]
  }
};

Other packages similar to resolve-url-loader

Readme

Source

Resolve URL Loader

NPM

This webpack loader allows you to have a distributed set SCSS files and assets co-located with those SCSS files.

Do you organise your SCSS and assets by feature?

Where are your assets?

  • ✅ I want my assets all over the place, next to my SCSS files.
  • ❌ My assets are in a single directory.

How complicated is your SASS?

  • ✅ I have a deep SASS composition with partials importing other partials.
  • ✅ My asset paths are constructed by functions or @mixins.
  • ❌ I have a single SCSS file. The asset paths are just explicit in that.

What asset paths are you using?

  • ✅ Fully relative url(./foo.png) or url(foo.png)
  • ❌ Root relative url(/foo.png)
  • ❌ Relative to some package or webpack root url(~stuff/foo.png)
  • ❌ Relative to some variable which is your single asset directory url($variable/foo.png)

What webpack errors are you getting?

  • ✅ Webpack can't find the relative asset foo.png 😞
  • ❌ Webpack says it doesn't have a loader for 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. 👍

What's the problem with SASS?

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 basic problem

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. 🤓

Getting started

Upgrading? the changelog shows how to migrate your webpack config.

Install

via npm

npm install resolve-url-loader --save-dev

via yarn

yarn add resolve-url-loader --dev

Configure Webpack

The typical use case is resolve-url-loader between sass-loader and css-loader.

⚠️ IMPORTANT

  • source-maps required for loaders preceding resolve-url-loader (regardless of devtool).
  • Always use full loader package name (don't omit -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, // <-- !!IMPORTANT!!
        }
      }
    ]
  },
  ...
]

Options

The loader should work without options but use these as required.

optiontypedefaultdescription
sourceMapbooleanfalseGenerate an outgoing source-map.
removeCRbooleantrue Windows OS
false otherwise
Convert orphan CR to whitespace.
See known issues below.
debugbooleanfalseDisplay debug information.
silentbooleanfalseDo not display warnings or deprecation messages.
rootstringunsetSimilar 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.
joinfunctioninbuiltadvancedCustom join function.
Use custom javascript to fix asset paths on a per-case basis.
Refer to the advanced features docs.

Limitations

Compatibility

Tested macOS and Windows.

All webpack@4-webpack@5 with contemporaneous loaders/plugins using node@12.

Refer to test directory for full webpack configurations as used in automated tests.

Known issues

Read the troubleshooting docs before raising an issue.

Keywords

FAQs

Last updated on 17 Jan 2022

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc