Loads files as base64 encoded URL
npm install --save-dev url-loader
The url-loader works like the file-loader, but can return a DataURL if the file is smaller than a byte limit.
import img from './image.png'
webpack.config.js
module.exports = {
module: {
rules: [
{
test: /\.(png|jpg|gif)$/,
use: [
{
loader: 'url-loader',
options: {
limit: 8192
}
}
]
}
]
}
}
{String}
extname
{String}
file-loader
loader for the file when file is greater than the limit (in bytes)
##
If the file is greater than the limit (in bytes) the file-loader is used by default and all query parameters are passed to it.
You can use other loader using fallback option.
The limit can be specified via loader options and defaults to no limit.
webpack.config.js
{
loader: 'url-loader',
options: {
limit: 8192
}
}
mimetypeSet the MIME type for the file. If unspecified the file extensions will be used to lookup the MIME type.
webpack.config.js
{
loader: 'url-loader',
options: {
mimetype: 'image/png'
}
}
fallbackwebpack.config.js
{
loader: 'url-loader',
options: {
fallback: 'responsive-loader'
}
}
|
|
|
|
|
|