file-loader, image-webpack-loader, raw-loader, and url-loader are Webpack loaders designed to handle non-JavaScript assets during the build process. file-loader emits files to the output directory and returns their public paths, url-loader conditionally inlines small files as Data URLs, raw-loader imports file contents as strings, and image-webpack-loader compresses and optimizes image assets. However, as of Webpack 5, file-loader, raw-loader, and url-loader are officially deprecated in favor of Webpack's built-in Asset Modules, while image-webpack-loader remains actively maintained for image optimization tasks.
These four loaders — file-loader, image-webpack-loader, raw-loader, and url-loader — are all designed to help Webpack handle non-JavaScript assets during the build process. However, they serve very different purposes, and some have been deprecated in favor of newer Webpack features. Understanding when and how to use each is critical for optimizing asset handling, bundle size, and developer experience.
Before diving into functionality, it’s essential to note that three of these four packages are officially deprecated:
file-loader: Deprecated as of Webpack 5. Use built-in asset modules instead.raw-loader: Deprecated as of Webpack 5. Use type: 'asset/source'.url-loader: Deprecated as of Webpack 5. Replaced by type: 'asset/inline' or type: 'asset' with dataUrlCondition.Only image-webpack-loader remains actively maintained — but it serves a completely different role: image optimization, not asset resolution.
🛑 Do not use
file-loader,raw-loader, orurl-loaderin new Webpack 5+ projects. They exist only for legacy compatibility.
file-loader: Emit files to output directoryfile-loader copies a file to your output directory and returns its public path as a string. It was commonly used for images, fonts, or other static assets that should live as separate files.
// webpack.config.js (legacy)
module.exports = {
module: {
rules: [
{
test: /\.(png|jpe?g|gif)$/i,
use: ['file-loader']
}
]
}
};
// In code
import img from './image.png';
console.log(img); // e.g., '/static/media/image.abc123.png'
url-loader: Inline small files as Data URLsurl-loader works like file-loader, but with a twist: if a file is smaller than a configured limit, it returns a base64-encoded Data URL instead of emitting a file. This avoids extra HTTP requests for tiny assets.
// webpack.config.js (legacy)
{
test: /\.(png|jpe?g|gif)$/i,
use: [
{
loader: 'url-loader',
options: { limit: 8192 } // 8 KB
}
]
}
// For small image → returns 'data:image/png;base64,...'
// For large image → falls back to file-loader behavior
raw-loader: Import file contents as a stringraw-loader reads a file and exports its raw content as a JavaScript string. Useful for importing text files, SVGs, or shader code without parsing.
// webpack.config.js (legacy)
{
test: /\.txt$/,
use: 'raw-loader'
}
// In code
import license from './LICENSE.txt';
console.log(typeof license); // 'string'
image-webpack-loader: Optimize image assetsUnlike the others, image-webpack-loader doesn’t change how assets are resolved — it compresses and optimizes images using tools like mozjpeg, pngquant, and svgo. It’s typically chained after another loader.
// webpack.config.js (still valid)
{
test: /\.(png|jpe?g|gif|svg)$/i,
use: [
'file-loader', // or Webpack 5 asset module
{
loader: 'image-webpack-loader',
options: {
mozjpeg: { quality: 80 },
pngquant: { quality: [0.6, 0.8] }
}
}
]
}
Webpack 5 introduced Asset Modules, which eliminate the need for file-loader, url-loader, and raw-loader. Here’s how to migrate:
file-loader → type: 'asset/resource'// Modern equivalent
{
test: /\.(png|jpg|gif)$/i,
type: 'asset/resource'
}
url-loader → type: 'asset' with parser.dataUrlCondition// Modern equivalent
{
test: /\.(png|jpg|gif)$/i,
type: 'asset',
parser: {
dataUrlCondition: { maxSize: 8 * 1024 } // 8 KB
}
}
raw-loader → type: 'asset/source'// Modern equivalent
{
test: /\.txt$/,
type: 'asset/source'
}
💡 You can still use
image-webpack-loaderwith these modern asset types — just place it in theusearray alongside them.
Here’s how you’d configure image loading and optimization in a modern Webpack 5 project:
// webpack.config.js
module.exports = {
module: {
rules: [
{
test: /\.(png|jpe?g|gif|svg)$/i,
type: 'asset',
parser: {
dataUrlCondition: { maxSize: 4 * 1024 } // Inline <4KB
},
generator: {
filename: 'images/[name].[hash][ext]'
},
use: [
{
loader: 'image-webpack-loader',
options: {
disable: process.env.NODE_ENV === 'development',
mozjpeg: { progressive: true, quality: 75 },
optipng: { enabled: false },
pngquant: { quality: [0.65, 0.8], speed: 4 },
svgo: { plugins: [{ removeViewBox: false }] }
}
}
]
}
]
}
};
This setup:
/images/image-webpack-loader TodaySince the other three loaders are deprecated, the only relevant decision is whether to include image-webpack-loader:
✅ Use it if:
❌ Skip it if:
If you’re maintaining a Webpack 4 project:
file-loader, url-loader, or raw-loader.image-webpack-loader if you rely on its optimization — it works fine with Webpack 5 asset modules.| Package | Status | Purpose | Webpack 5 Replacement |
|---|---|---|---|
file-loader | ❌ Deprecated | Emit file, return public path | type: 'asset/resource' |
url-loader | ❌ Deprecated | Inline small files as Data URLs | type: 'asset' + dataUrlCondition |
raw-loader | ❌ Deprecated | Import file contents as string | type: 'asset/source' |
image-webpack-loader | ✅ Active | Compress/optimize image assets | No replacement needed |
For new projects, skip the deprecated loaders entirely and use Webpack 5’s built-in asset modules. Add image-webpack-loader only if you need on-the-fly image optimization and don’t have a better solution (like a smart CDN).
For existing projects, plan a migration away from the deprecated loaders when moving to Webpack 5. The configuration changes are straightforward, and you’ll benefit from reduced dependencies and better integration with Webpack’s core.
Choose image-webpack-loader when you need automated, build-time image optimization (compression, resizing, format conversion) and don’t have a CDN or external service handling it. It works well alongside Webpack 5’s asset modules and is the only actively maintained package among the four. Avoid it if your images are already optimized or if build performance is more critical than output size.
Do not use file-loader in new Webpack 5+ projects — it is officially deprecated. Instead, use Webpack’s built-in type: 'asset/resource' to emit files to the output directory. Only consider this package if you’re maintaining a legacy Webpack 4 project and cannot upgrade immediately.
Avoid raw-loader in new projects — it’s deprecated as of Webpack 5. Use type: 'asset/source' instead to import file contents as strings. This package should only be used in legacy Webpack 4 codebases where migration isn’t feasible yet.
Do not use url-loader in modern Webpack projects — it’s deprecated. Replace it with type: 'asset' combined with parser.dataUrlCondition.maxSize to inline small assets as Data URLs. Its functionality is now natively supported without extra dependencies.
Image loader module for webpack
Minify PNG, JPEG, GIF, SVG and WEBP images with imagemin
Issues with the output should be reported on the imagemin issue tracker.
$ npm install image-webpack-loader --save-dev
node:12-busterNo additional preparations required.
All dependencies will be compiled automatically.
Not recommended because of large image size (~1 GB).
node:12-buster-slimPrepare script:
apt-get update
apt-get install -y --no-install-recommends autoconf automake g++ libpng-dev make
Recommended container image.
node:12-alpinePrepare script:
apk add --no-cache autoconf automake file g++ libtool make nasm libpng-dev
Not recommended because of long build time.
| Container distro | Pull time | Build time | Total time |
|---|---|---|---|
node:12-buster | 42 seconds | 77 seconds | 119 seconds |
node:12-buster-slim | 11 seconds | 103 seconds | 114 seconds |
node:12-alpine | 8 seconds | 122 seconds | 130 seconds |
Installing on some versions of OSX may raise errors with a missing libpng dependency:
Module build failed: Error: dyld: Library not loaded: /usr/local/opt/libpng/lib/libpng16.16.dylib
This can be remedied by installing the newest version of libpng with homebrew:
brew install libpng
In your webpack.config.js, add the image-loader, chained after the file-loader:
rules: [{
test: /\.(gif|png|jpe?g|svg)$/i,
use: [
'file-loader',
{
loader: 'image-webpack-loader',
options: {
bypassOnDebug: true, // webpack@1.x
disable: true, // webpack@2.x and newer
},
},
],
}]
For each optimizer you wish to configure, specify the corresponding key in options:
rules: [{
test: /\.(gif|png|jpe?g|svg)$/i,
use: [
'file-loader',
{
loader: 'image-webpack-loader',
options: {
mozjpeg: {
progressive: true,
},
// optipng.enabled: false will disable optipng
optipng: {
enabled: false,
},
pngquant: {
quality: [0.65, 0.90],
speed: 4
},
gifsicle: {
interlaced: false,
},
// the webp option will enable WEBP
webp: {
quality: 75
}
}
},
],
}]
Comes bundled with the following optimizers, which are automatically enabled by default:
And optional optimizers:
Each optimizers can be disabled by specifying optimizer.enabled: false, and optional ones can be enabled by simply putting them in the options
If you are using Webpack 1, take a look at the old docs (or consider upgrading).
Loader options:
Type: boolean
Default: false
Using this, no processing is done when webpack 'debug' mode is used and the loader acts as a regular file-loader. Use this to speed up initial and, to a lesser extent, subsequent compilations while developing or using webpack-dev-server. Normal builds are processed normally, outputting optimized files.
Type: boolean
Default false
Same functionality as bypassOnDebug option, but doesn't depend on webpack debug mode, which was deprecated in 2.x. Basically you want to use this option if you're running webpack@2.x or newer.
For optimizer options, an up-to-date and exhaustive list is available on each optimizer repository: