My current setup builds my JS/CSS assets using webpack into the /themes/x/assets/ folder. I then use resources.Get to include the built JS/CSS into the HTML, fingerprinting and all.
Inside the CSS I reference custom fonts that are also output (into /themes/x/assets/fonts). However, as hugo only publishes assets that are used with Permalink, the fonts never get published.
How can I get the fonts into the output? (the same goes for some images referenced in the CSS which are located in /themes/x/assets/images)
Also, side note: Why are assets published under the language folders instead of the root? This seems a bit weird for me?