Skip to content

Instantly share code, notes, and snippets.

@longlho
Created August 20, 2019 03:02
Show Gist options
  • Save longlho/b8730da2796aad52554fc29fb78a19c5 to your computer and use it in GitHub Desktop.
Save longlho/b8730da2796aad52554fc29fb78a19c5 to your computer and use it in GitHub Desktop.
transformer-p10.ts
import * as png from 'foo.png'
function render () {
return <img src={png} />
}
// Transform to
const hoisted_img = <img src="data:base64..." />
function render () {
return hoisted_img
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment