Sep 10, 2026
To use an image in an Adobe App Builder project, mind the Parcel bundler. A plain JS import of an asset silently resolves to an empty module. Use the url: scheme instead to get the real, hashed URL. Also, in the age of the modern web, consider not forcing bundlers on developers.
import icon from 'url:./icon.svg';
<img src="${icon}" width="32" height="32">
Back to Notes