# Sage 9 & SVG's not found with build:production

**URL:** https://discourse.roots.io/t/sage-9-svgs-not-found-with-build-production/8943
**Category:** sage
**Tags:** webpack
**Created:** 2017-02-28T12:09:48Z
**Posts:** 8
**Showing post:** 6 of 8

## Post 6 by @deJong — 2017-04-02T12:47:33Z

Adding null to svgo at ImageminPlugin in webpack.config.optimize fixes the issue:

```
new ImageminPlugin({
      optipng: { optimizationLevel: 7 },
      gifsicle: { optimizationLevel: 3 },
      pngquant: { quality: '65-90', speed: 4 },
      svgo: null,
      plugins: [imageminMozjpeg({ quality: 75 })],
      disable: (config.enabled.watcher),
    }),
```

---

_[View the full topic](https://discourse.roots.io/t/sage-9-svgs-not-found-with-build-production/8943)._
