vitepress从搭建到部署博客文档(含搜索、评论、访问量等)

前言

VitePress 是一个基于 Vue.js 和 Vite 构建的静态网站生成器,专注于快速搭建文档和技术博客!

这篇文章:你将能从0到1创建部署属于自己的博客、技术文档。来吧!展示! 欢迎来坐坐

准备工作

创建git仓库并配置好部署环境

  • 1.登录github

  • 2.创建项目 项目名 规则 xxx.github.io 如:xiaoyi1255.github.io

  • 3.创建未来要部署的分支 gh-pages

  • 4.Settings => Pages 去选择 gh-pages 分支

  • 5.每次push gh-pages分支就会自动进行部署

一、快速搭建项目

  • 步骤 1: 拉取创建好的git项目
sh 复制代码
git clone https://github.com/xiaoyi1255/xiaoyi1255.github.io.git
  • 步骤 2: 初始化 yarn | npm | pnpm 看喜好来
sh 复制代码
yarn init -y
  • 步骤 3: 本地安装 VitePress
sh 复制代码
yarn add vitepress -D
  • 步骤 4: 创建你第一篇文档
sh 复制代码
mkdir docs && echo 'Hello VitePress' > docs/index.md
  • 步骤 5: 在 package.json.添加一些script
json 复制代码
"scripts": {
    "dev": "vitepress dev docs --port 3333",
    "build": "vitepress build docs",
    "serve": "vitepress serve docs"
}
  • 启动项目
sh 复制代码
yarn dev

中文网

二、配置

新建配置文件config.js 位置如下:

sh 复制代码
├─ docs
│  ├─ .vitepress
│  │  └─ config.js
│  └─ index.md
|  └─ guid
|     └─ test.md
└─ package.json

具体配置可参考:

  • 顶部导航 & 侧边导航
typescript 复制代码
themeConfig: {
    nav: [
        {
           text: 'Guide', link: '/guide/test', activeMatch: '/guide/' 
        }
    ],
    sidebar: [
        {
            text: 'test',
            collapsed: false,
            items: [
                { text: 'test1', link: '/guide/test' },
            ]
        },
    ],
}
  • 页面内具体导航

需要注意:默认是二级标题

typescript 复制代码
## test {#test}
  • 完整的配置如下
javascript 复制代码
import { createRequire } from 'module'
import { defineConfig } from 'vitepress'

const require = createRequire(import.meta.url)

export default defineConfig({
  lang: 'en-US',
  title: '小易',
  description: '',

  lastUpdated: true,
  cleanUrls: true,

  head: [
    ['meta', { name: 'theme-color', content: '#3c8772' }],
    [
      'script',
      {
        src: 'https://cdn.usefathom.com/script.js',
        'data-site': 'AZBRSFGG',
        'data-spa': 'auto',
        defer: ''
      }
    ]
  ],

  themeConfig: {
    nav: nav(),

    sidebar: {
      '/guide/': sidebarGuide(),
    },

    // editLink: {
    //   pattern: 'https://github.com/vuejs/vitepress/edit/main/docs/:path',
    //   text: 'Edit this page on GitHub'
    // },

    socialLinks: [
      { icon: 'github', link: 'https://github.com/xiaoyi1255' }
    ],

    // footer: {
    //   message: 'Released under the MIT License.',
    //   copyright: 'Copyright © 2019-present Evan You'
    // },

    // algolia: {
    //   appId: '8J64VVRP8K',
    //   apiKey: 'a18e2f4cc5665f6602c5631fd868adfd',
    //   indexName: 'vitepress'
    // },

    // carbonAds: {
    //   code: 'CEBDT27Y',
    //   placement: 'vuejsorg'
    // }
  }
})

function nav() {
  return [
    { text: 'Guide', link: '/guide/test', activeMatch: '/guide/' },
  ]
}

function sidebarGuide() {
  return [
    {
      text: '项目搭建',
      collapsed: false,
      items: [
        { text: 'vitepress 搭建Blog', link: '/guide/project/blog' },
      ]
    },
  ]
}

三、部署

  • package.json配置build打包命令
json 复制代码
"scripts": {
    "dev": "vitepress dev docs --port 3333",
    "build": "vitepress build docs",
    "serve": "vitepress serve docs",
    "deploy": "sh deploy.sh"
}
  • 构建项目
sh 复制代码
yarn build 
    1. build生成dist => docs/.vitepress/dist
    1. 把dist里面的文件推送到git gh-pages 分支就可以了
    1. 先把dist文件复制好,再切换到gh-pages然后粘贴再push

脚本进行部署 {#脚本进行部署}

相信各位看官 看到这里就开始吐槽了,难道我改一次代码,我重新打包然后把dist再上传?

答案肯定是否定的: 以上步骤可以使用代码来执行

创建deploy.sh => 添加到package.json => yarn deploy

sh 复制代码
# 通过 git config --global alias.ch 设置
git config --global alias.ch checkout
sh 复制代码
# 根目录新建一个deploy.sh文件
#!/bin/bash

git ch -b temp
yarn
yarn build
# 创建一个临时目录用于保存构建生成的静态文件
mkdir temp_deploy

# 将构建生成的静态文件复制到临时目录
cp -r docs/.vitepress/dist/* temp_deploy

find . -mindepth 1 -maxdepth 1 ! -name '.git' ! -name '.gitignore' ! -name 'temp_deploy' -exec rm -rf {} \;
git add .
git commit -m "deploy"

git ch gh-pages

find . -mindepth 1 -maxdepth 1 ! -name '.git' ! -name '.gitignore' -exec rm -rf {} \;

git add .
git commit -m "deploy"

git merge temp

find . -mindepth 1 -maxdepth 1 ! -name '.git' ! -name '.gitignore' ! -name 'temp_deploy' -exec rm -rf {} \;

mv temp_deploy/* .

rm -rf temp_deploy

git add .
git commit -m 'deploy'
git push

git branch -D temp
git ch -b master
    1. package.json
json 复制代码
"scripts": {
  "dev": "vitepress dev docs --port 3333",
  "build": "vitepress build docs",
  "serve": "vitepress serve docs",
  "deploy": "sh deploy.sh"
}
  • yarn deploy 自动化部署 也可以 终端直接跑sh deploy.sh
sh 复制代码
yarn deploy

恭喜你!到这里你就可以去github settings => pages 看了

加上全局搜索

Algolia

加上评论网站统计

valine

源码

xiaoyi1255

相关推荐
桂月二二31 分钟前
探索前端开发中的 Web Vitals —— 提升用户体验的关键技术
前端·ux
沈梦研2 小时前
【Vscode】Vscode不能执行vue脚本的原因及解决方法
ide·vue.js·vscode
hunter2062062 小时前
ubuntu向一个pc主机通过web发送数据,pc端通过工具直接查看收到的数据
linux·前端·ubuntu
qzhqbb2 小时前
web服务器 网站部署的架构
服务器·前端·架构
刻刻帝的海角2 小时前
CSS 颜色
前端·css
轻口味2 小时前
Vue.js 组件之间的通信模式
vue.js
浪浪山小白兔3 小时前
HTML5 新表单属性详解
前端·html·html5
lee5763 小时前
npm run dev 时直接打开Chrome浏览器
前端·chrome·npm
2401_897579653 小时前
AI赋能Flutter开发:ScriptEcho助你高效构建跨端应用
前端·人工智能·flutter
limit for me4 小时前
react上增加错误边界 当存在错误时 不会显示白屏
前端·react.js·前端框架