Svelte component Svelte
Snippet Svelte untuk Svelte component yang menjawab request ke /pixel.gif dengan empty GIF, yang di-decode sekali saat startup.
Svelte component Svelte
<script>
const EMPTY_GIF = 'data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==';
let { width = 1, height = 1, ...rest } = $props();
</script>
<img src={EMPTY_GIF} {width} {height} alt="" aria-hidden="true" {...rest} />
Kami telah menjalankan snippet ini dan membandingkan byte yang dikembalikannya.