### What version of Next.js are you using? 11.0.0 ### What version of Node.js are you using? v14.15.1 ### What browser are you using? - ### What operating system are you using? macOS ### How are you deploying your application? Other platform ### Describe the Bug When a svg sprite (like [this](https://s1.immobiliare.it/_next/static/images/logo-header-6b37a0684c36d0a02e8fef606099adcc.svg) one) is imported "TypeError: Invalid SVG" is thrown on build. ### Expected Behavior The import should return the StaticImageData with an empty placeholder without throwing an error. ### To Reproduce 1. Start a new next project 2. Download [this](https://s1.immobiliare.it/_next/static/images/logo-header-6b37a0684c36d0a02e8fef606099adcc.svg) image 3. Import the svg in a javascript module (`import logo from "./logo-header.svg"`) 4. Run the build with `next build`