I have a prebuilt svg sprite with more than 100 icons:
<svg xmlns="http://www.w3.org/2000/svg" style="visibility:hidden; width:0; height:0;">
<symbol id="icon--web" viewBox="0 0 70 100">...</symbol>
...
</svg>
How to configure webpack to use such a sprite in this simple way? :
<svg class="icon icon--web">
<use xlink:href="../../images/sprite.svg#icon--web"></use>
</svg>
Most of plugins (svg-spritemap-webpack-plugin, svg-sprite-loader) are aimed to build sprites from many svg images, however I've not found how to configure them to use an earlier built sprite.