JSFiddle - React, Tailwind, and code Playground
by Weston Ruter
HTML
<script>
class AmpImg extends HTMLImageElement {
constructor() {
super('');
}
connectedCallback() {
// this.src = ''; // Try to prevent image from being loaded.
}
}
customElements.define( 'amp-img', AmpImg, { extends: "img" });
</script>
<img is="amp-img" src="https://www.ampproject.org/static/img/logo-blue.svg" width="175" height="60">