--- import { commentConfig } from '@/config' interface Props { identifier: string url: string title: string } const { identifier, url, title } = Astro.props if (!commentConfig || !commentConfig.disqus) { throw new Error('Disqus comments are not configured') } const shortname = commentConfig.disqus.shortname ---