npm.io
9.0.3 • Published 2d ago

postcss-normalize-url

Licence
MIT
Version
9.0.3
Deps
1
Size
13 kB
Vulns
0
Weekly
0
Stars
5.0K

postcss-normalize-url

Normalize URLs with PostCSS.

Install

With npm do:

npm install postcss-normalize-url --save

Example

Input
h1 {
    background: url("http://site.com:80/image.jpg")
}
Output
h1 {
    background: url(http://site.com/image.jpg)
}

Note that this module will also try to normalize relative URLs, and is capable of stripping unnecessary quotes. For more examples, see the tests.

Security

This package optimizes url() values for output size. It does not provide URL validation, sanitization, or security-policy enforcement.

If CSS may originate from untrusted users, apply your URL policy to the final output before using it in a security-sensitive context.

Usage

See the PostCSS documentation for examples for your environment.

Contributors

See CONTRIBUTORS.md.

License

MIT Ben Briggs

Keywords