--- import { commentConfig } from "@/config"; interface Props { path: string; } const config = { ...commentConfig.waline, el: "#waline", path: Astro.props.path, dark: "html.dark", wordLimit: ["2", "300"], ...(commentConfig.waline?.visitorCount ? { pageview: true } : {}), }; ---