I'm using ember-cli-node-assets addon which copies an icon library to my public folder at runtime. In my templates, I can use an standard image tag to load the SVG, but with the handlebars helper
{{!-- This works --}}
<img src="assets/calcite-web/img/icons/ui/share.svg" alt="">
{{!-- This does not work --}}
{{inline-svg "assets/calcite-web/img/icons/ui/share"}}
I get the following error:

I'm just using the default options. There's no entry in my ember-cli-build.js file.