- 简介
- 目录大纲
- 最新文档
- 文集下载
部署Hexo到自己的Linux服务器上
部署Hexo到自己的Linux服务器上 第一部分:服务器端操作 1.安装git和nginx shell yum install -y nginx git 2.添加一个git用户 ```shell useradd git passwd git 给git用户配置sudo权限 chmod 740 /etc/sudoers vim /etc/sudoers 找到root ALL=(ALL) ALL,在它下……
Leo - 2022年11月26日 10:38
搭建自己的SSR
Vue SSR介绍 是什么 官方文档:https://ssr.vuejs.org/ Vue SSR(Vue.js Server-Side Rendering) 是 Vue.js 官方提供的一个服务端渲染(同构应用)解 决方案 使用它可以构建同构应用 还是基于原有的 Vue.js 技术栈 官方文档的解释:Vue.js 是构建客户端应用程序的框架。默认情况下,可以在浏览器中输出 Vue 组……
Leo - 2022年11月23日 23:54
yarn与npm命令对比
yarn与npm命令对比 注:x 代表包名 | 代表有两个方式都可以 比如 npm i | install 可以直接npm i 或者 npm install yarn global 这个顺序不可以改变 npm ls -g --depth 0 查看npm安装过的全局包 | npm | yarn | ……
Leo - 2022年11月17日 14:06
hexo-theme-matery主题使用
hexo-theme-matery主题使用 特性 简单漂亮,文章内容美观易读 Material Design 设计 响应式设计,博客在桌面端、平板、手机等设备上均能很好的展现 首页轮播文章及每天动态切换 Banner 图片 瀑布流式的博客文章列表(文章无特色图片时会有 24 张漂亮的图片代替) 时间轴式的归档页 词云的标签页和雷达图的分类页 丰富的关于我页面(包括关于我、文章统计图、我的项目、我……
Leo - 2022年10月28日 17:45
Nuxt.js 综合案例
Nuxt.js 综合案例 介绍 GitHub仓库:https://github.com/gothinkster/realworld 在线示例:https://demo.realworld.io/#/ 接口文档:https://github.com/gothinkster/realworld/tree/master/api 页面模板:https://github.com/gothinkster/r……
Leo - 2022年10月28日 17:42