程序笔记

“技术”

为 Git Bash 设置代理

有时候我们在内网中办公,不能直接连接外网,这时候就需要设置代理。为 Git Bash 设置代理的方法有两种:命令行方式非全局设置方式git config http.proxy http://12...

修改vue/cli项目的标题

在 vue.config.js 中通过如下配置设置页面标题:chainWebpack: (config) => { config .plugin('html') ...