/** * 微信分享默认文案与配图(H5 用 JSSDK;小程序见首页 onShareAppMessage) * 配图:@/static/share.png(建议 200×200 以上,便于被微信压缩后仍清晰) */ import shareImageUrl from '@/static/share.png' export const WECHAT_SHARE = { title: '苏州市科普场馆地图', desc: '这里有100+家科普场馆', /** Vite 解析后的 /h5/assets/... 路径,H5 需拼成带域名的绝对 URL */ imageUrl: shareImageUrl, } as const