This article discusses the use of Vuepress to build a theme. It includes information about updates, such as changes to the comment style and default language, the addition of a back-to-top feature, modifications to the article directory logic and style, changes to the article title display style, and the addition of a rotating avatar and GitHub comment functionality. It also mentions bug fixes and the official release of version 1.0.0 on npm. The article provides a guide on how to install the theme and write blog articles using Vuepress. It concludes with instructions on how to deploy the theme.
To get started, make sure you have Vuepress installed globally. Then, follow these steps:
npm install -g vuepress
"scripts": {
"dev": "vuepress dev docs",
"build": "vuepress build docs"
}
title: [Article Title]
category: [Article Category]
desc: [Article Description]
tag: [Article Tags]
picture: [Article Thumbnail]
thumbnaildate: [Publication Date]
Update: [Update Date]
yarn dev or npm run dev in the command line to start the preview.vuepress build docs in the command line. This will generate a “dist” folder in the .vuepress directory, containing all HTML, CSS, JS, and static files. You can then deploy this folder.This article provides details on how to build a theme using Vuepress. It covers various features and updates implemented in the theme, such as modified comment styles, back-to-top functionality, changes to the article directory logic and display, and the addition of a rotating avatar and GitHub comment functionality. The article also includes a guide on how to install the theme, configure it, and write blog articles using Markdown. It concludes with instructions on deploying the theme.