Social Links
reco_luan2024-11-03
Types
type SocialLinks = Array<{
link: string
icon: string
}>
Refer
TIP
For more information on setting icons, please see Guide-> Icon
// .vuepress/config.ts
import { defineUserConfig } from 'vuepress'
import { recoTheme } from 'vuepress-theme-reco'
export default defineUserConfig({
theme: recoTheme({
'socialLinks': [
{ icon: 'IconGitHub', link: 'https://github.com/vuepress-reco/vuepress-theme-reco' }
]
})
})