erikras / react-redux-universal-hot-example

A starter boilerplate for a universal webapp using express, react, redux, webpack, and react-transform
MIT License
12.01k stars 2.5k forks source link

Why separate svg extension in webpack-isomorphic-tools config? #1367

Open gsccheng opened 7 years ago

gsccheng commented 7 years ago

In the config, you can see that svg is configured separately in the assets:

svg: {
    extension: 'svg',
    parser: WebpackIsomorphicToolsPlugin.url_loader_parser
 },

Why is that? When I added it to the images extensions, the app still seemed to load fine:

assets: {
    images: {
      extensions: [
        'jpeg',
        'jpg',
        'png',
        'svg',
        'gif'
      ],
      parser: WebpackIsomorphicToolsPlugin.url_loader_parser