# frontBaseKnowBlog **Repository Path**: andy-code1/front-base-know-blog ## Basic Information - **Project Name**: frontBaseKnowBlog - **Description**: 前端基础的知识 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2022-10-24 - **Last Updated**: 2022-10-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 个人前端知识点博客:用来面试用的 参考链接:https://zhuanlan.zhihu.com/p/484734960?utm_id=0 step1: ``` npm install 安装依赖 npm run dev 启动 npm run build 打包 git add . git commit -m "git commmit 提交" git push origin master -f ``` step2 : gitee的服务里面点击gitpage。选择部署分支和部署目录,然后点击启动: 部署目录,选择docs/.vuepress/dist文件夹,刚刚我们执行打包命令生成的。 step3: 关于打包黑屏的问题我们可以这样解决 ``` node_modules\@vuepress\core\lib\client 下的 app.js mode: 'history',改成hash 然后 .vuepresss/config.js中base: "./", ```