33 lines
1002 B
JavaScript
33 lines
1002 B
JavaScript
/*
|
|
* @LastEditTime: 2023-11-15 18:20:43
|
|
* @Description: ...
|
|
* @Date: 2023-06-26 00:39:07
|
|
* @Author: isboyjc
|
|
* @LastEditors: isboyjc
|
|
*/
|
|
import { version, author, keywords as ks, description as desc } from '../package.json'
|
|
|
|
// base
|
|
export const title = 'ISLENOTE 岛屿笔记'
|
|
export const site = 'https://sentenceend.com/'
|
|
export const logo = '/img/site/logo_blue.png'
|
|
export const ico = '/img/site/logo_blue.png'
|
|
export const keywords = ks.join("、")
|
|
export const description = "记录灵感,编排灵感"
|
|
export const icp = "京ICP备2023022756号-2"
|
|
export const publicSecurityFiling = "11011402053556"
|
|
export const mail = "islenote@sentenceend.com"
|
|
export const me = {
|
|
avatar: '/img/me/avatar.jpeg',
|
|
name: author,
|
|
desc: '不正经的前端,很正经的摄影!',
|
|
wx: '/img/me/wx.jpeg',
|
|
github: 'https://github.com/isboyjc',
|
|
twitter: 'https://twitter.com/isboyjc',
|
|
juejin: 'https://juejin.cn/user/2999123452373735',
|
|
}
|
|
|
|
// link
|
|
|
|
// version
|
|
export const docsVersion = version |