UNPKG

astro-pure

Version:

A simple, clean but powerful blog theme build by astro.

10 lines (7 loc) 257 B
import { z } from 'astro/zod' export const shareList = ['weibo', 'x', 'bluesky'] as const export const ShareSchema = () => z .array(z.enum(shareList)) .default(['bluesky']) .describe('Options for sharing content on social media platforms.')