This plugin has been deprecated. Please refer to the official Sanity + Astro Plugin going forward.
This is a helper package for integrating Sanity with Astro. It is not officially from Sanity but it is architected in the same way their official packages for frameworks like NextJS are.
npx astro add astro-sanity
Follow the prompts and once it's finished you should have something like the following in your astro.config.mjs
file:
import sanity from 'astro-sanity'
...
export default defineConfig({
integrations: [sanity()],
});
Update the sanity config to match your Sanity Client Config like so:
export default defineConfig({
integrations: [
sanity({
projectId: 'YOUR_PROJECT_ID',
dataset: 'production',
apiVersion: '2021-03-25',
useCdn: true,
})],
});
Please see the /demo
for a full example. However, this package was designed to give you the building blocks to integrate with Sanity but the flexibility to implement it how you want with the helper function names and behavior you want.
You can globally use the Sanity Client from the config with the following import
import { useSanityClient } from 'astro-sanity';
Here is an example using the client to query Sanity:
import { useSanityClient, groq } from 'astro-sanity';
export async function getFirstBlogPost() {
const query = groq`*[_type == "post"]`;
const firstPost = await useSanityClient().fetch(query);
return firstPost;
}
You can learn more about Sanity's image builder here. Here is an example of how you can create your own helper function to use in your components:
import { useSanityClient } from 'astro-sanity';
import { createImageBuilder } from 'astro-sanity';
export const imageBuilder = createImageBuilder(useSanityClient());
export function urlForImage(source) {
return imageBuilder.image(source);
}
You can learn more about the @portabletext/to-html package here
import { portableTextToHtml } from 'astro-sanity';
import { urlForImage } from './urlForImage';
const customComponents = {
/* your custom components here */
};
export function sanityPortableText(portabletext) {
return portableTextToHtml(portabletext, customComponents);
}
---
import { sanityPortableText } from '../sanity/portableText'
const {portableText} = Astro.props;
---
<Fragment set:html={sanityPortableText(portableText)} />
This can then be used in your Astro files and convert portable text to HTML automatically.
<PortableText portableText={myPortableText}/>
Please feel free to reach out to us on our Discord if you have questions or file an issue on the repo.