|
8 years ago | |
---|---|---|
.. | ||
.github | 8 years ago | |
node_modules | 8 years ago | |
.npmignore | 8 years ago | |
LICENSE | 8 years ago | |
README.md | 8 years ago | |
index.js | 8 years ago | |
package.json | 8 years ago |
npm install --save-dev url-loader
The url
loader works like the file
loader, but can return a Data Url if the file is smaller than a byte limit.
The limit can be specified with a query parameter. (Defaults to no limit)
If the file is greater than the limit (in bytes) the file-loader
is used and all query parameters are passed to it.
require("url-loader?limit=10000!./file.png");
// => DataUrl if "file.png" is smaller than 10kb
require("url-loader?mimetype=image/png!./file.png");
// => Specify mimetype for the file (Otherwise it's inferred from extension.)
require("url-loader?prefix=img/!./file.png");
// => Parameters for the file-loader are valid too
// They are passed to the file-loader if used.
Don't hesitate to create a pull request. Every contribution is appreciated. In development you can start the tests by calling npm test
.
|
Juho Vepsäläinen
|
Joshua Wiens
|
Kees Kluskens