Skip to content
This repository has been archived by the owner on Apr 17, 2020. It is now read-only.

TobiDimmel/angular-svg-sprite-issue

Repository files navigation

angular-svg-sprite-issue

UPDATE(2020-04-17): Issue was fixed with svg-sprite-loader@4.2.4.

This project reproduces a bug with svg-sprite-loader in extract mode when integrating with Angular CLI.

Background to the integration

Angular CLI uses internally webpack to build an Angular app and handles in general the whole webpack configuration for you. But it also provides an extension point - called Builders. With the builder @angular-builders/custom-webpack you get access to the webpack configuration that was created by Angular CLI and you can adjust it to your needs. At this point you can integrate the svg-sprite-loader how it is shown by this minimal repository.

The issue

In development everthing works as expected, but when you build for production the following error is thrown:

angular-svg-sprite-issue\node_modules\@angular-devkit\build-webpack\src\utils.js:17
                id: chunk.id.toString(),
                             ^

TypeError: Cannot read property 'toString' of null

Although the error is thrown in the package @angular-devkit/build-webpack the root cause lies in the plug-in of svg-sprite-loader. In the plug-in a new chunk for the SVG sprite is added to the webpack compilation without setting its id (see code).

Reproduction steps

  1. npm install
  2. npm run build

Debugging with VS Code

In the repository a debug configuration "ng build --prod" is included to debug the compilation process with VS Code.

About

Reproduction of an issue with svg-sprite-loader in extract mode when integrating with Angular CLI.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published