---
export interface Props {
production?: boolean;
expanded?: boolean;
}
const TAG = 'vtbot-linter'; // see also start of script
const { production = false, expanded = false } = Astro.props;
const active = import.meta.env.DEV || production;
---
{active && }