Skip to main content

Import SVG in JS

You don't need the svg-url-loader anymore. If you use it yet, remove this legacy loader from your configuration. Since Webpack 5, you can use the native Webpack Asset Modules, which are supported by the Bundler Plugin.

Replacement of svg-url-loader options

To handle SVG files define the module configuration:

module: {
rules: [
{
test: /\.svg/i,
type: 'asset/resource',
generator: {
filename: 'img/[name].[hash:8][ext]',
},
},
],
}

Import SVG file as output filename.

Using the module configuration as asset/resource, the imported SVG file will contain a output filename.

import file from './image.svg';

console.log(file); // img/image.416b7e1d.svg

Import SVG file as data URL.

The Bundler Plugin supports the ?inline URL query to force load SVG file as a data URL.

note

The inline query works independent of used module type.

The inline query parameter supports values of encoding:

  • base64 - default, import SVG as base64-encoded data URL
  • escape - import SVG as escaped data URL

To import SVG as base64-encoded data URL, use the ?inline=base64 or ?inline query.

import file from './image.svg?inline=base64';

console.log(file); // data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDo...vc3ZnPgo=

Import SVG as escaped data URL:

import file from './image.svg?inline=escape';

console.log(file); // data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2...%3C%2Fsvg%3E