mirror of
https://github.com/snowykami/neo-blog.git
synced 2025-09-26 02:56:22 +00:00
- Update comment API to handle private comments and improve request structure. - Remove unused CSS animations and components related to comments. - Implement new comment input and item components with enhanced functionality including editing and private comment options. - Integrate user profile navigation and improve user experience with better feedback on actions (like, delete, edit). - Update localization for new features and ensure consistency in comment handling. - Introduce checkbox for private comments in the comment input.
25 lines
799 B
TypeScript
25 lines
799 B
TypeScript
const config = {
|
|
metadata: {
|
|
name: "Snowykami's Blog",
|
|
icon: "https://cdn.liteyuki.org/snowykami/avatar.jpg",
|
|
description: "分享一些好玩的东西"
|
|
},
|
|
defaultCover: "https://cdn.liteyuki.org/blog/background.png",
|
|
owner: {
|
|
name: "Snowykami",
|
|
description: "全栈开发工程师,喜欢分享技术心得和生活感悟。",
|
|
motto: "And now that story unfolds into a journey that, alone, I set out to",
|
|
avatar: "https://cdn.liteyuki.org/snowykami/avatar.jpg",
|
|
gravatarEmail: "snowykami@outlook.com"
|
|
},
|
|
bodyWidth: "80vw",
|
|
bodyWidthMobile: "100vw",
|
|
postsPerPage: 12,
|
|
commentsPerPage: 20,
|
|
footer: {
|
|
text: "Liteyuki ICP备 1145141919810",
|
|
links: []
|
|
}
|
|
}
|
|
|
|
export default config |