Skip to content

Instantly share code, notes, and snippets.

@devmnj
Created December 4, 2022 12:19
Show Gist options
  • Save devmnj/a4848355f5b1d6dcc695ae8c99e0c6e8 to your computer and use it in GitHub Desktop.
Save devmnj/a4848355f5b1d6dcc695ae8c99e0c6e8 to your computer and use it in GitHub Desktop.
Sanity Preview in a Sanity custom type
preview:{
select:{
title:'name',
imageUrl: 'avatar'
},prepare(selection){
const {title,imageUrl} =selection;
return{
title:title,
media:<img src={imageUrl} alt=''/>
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment