项目初始化
TIP
- 项目开发环境:node.js 14.18.1,yarn 1.22.17
- 项目目的:记录学习笔记,项目总结,问题以及解决方案,积累技术经验
- VuePresshttps://v2.vuepress.vuejs.org/zh/
初始化
- 新建文件夹命名未: xxxx_blog
- cd xxxx_blog 执行 yarn init
- 安装依赖
yarn add -D vuepress@next
- 新建
package.json
文件,添加运行打包脚本
{
"scripts": {
"dev": "vuepress dev docs",
"build": "vuepress build docs"
}
}
- 在项目根目录新建 .gitignore 文件,将默认的临时目录和缓存目录添加到 .gitignore 文件中
node_modules
.temp
.cache
- 创建第一篇文章
mkdir docs
echo '# Hello VuePress' > docs/README.md
- 运行项目
yarn dev