Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

postcss-urlrebase

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postcss-urlrebase

PostCSS plugin Rebase URLs to a given root URL.

  • 1.2.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
32K
decreased by-12.41%
Maintainers
1
Weekly downloads
 
Created
Source

PostCSS URL rebase plugin

PostCSS plugin for rebasing URLs to a given root URL.

.foo {
  /* Input example */
  background: url("images/test.jpg");
  mask: url("/images/layout/shape.svg");
}
.foo {
  /* Output example */
  background: url("https://example.com/images/test.jpg");
  mask: url("/images/layout/shape.svg");
}

Usage

Step 1: Install plugin:

npm install --save-dev postcss postcss-urlrebase

Step 2: Check you project for existed PostCSS config: postcss.config.js in the project root, "postcss" section in package.json or postcss in bundle config.

If you do not use PostCSS, add it according to official docs and set this plugin in settings.

Step 3: Add the plugin to plugins list:

module.exports = {
  plugins: [
+   require('postcss-urlrebase')({ rootUrl: "https://example.com/wp/wp-themes/example/" },
    require('autoprefixer')
  ]
}

Plugin options

rootUrl (required)

The root URL to which the existing URLs should be based to.

skipHostRelativeUrls (optional (default: true))

Should already host-relative URLs (as /images/test.jpg (URL starts with /)) be skipped?

Keywords

FAQs

Package last updated on 19 Jul 2023

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc