打赏
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 88 下一页
摘要: https://github.com/OBKoro1/koro1FileHeader 阅读全文
posted @ 2020-09-04 12:20 孟繁贵 阅读(433) 评论(0) 推荐(0) 编辑
摘要: 核心配置: server { listen 9998 ssl; server_name localhost; # 证书 ssl_certificate "crt文件"; ssl_certificate_key "key文件"; ssl_session_cache shared:SSL:1m; ssl 阅读全文
posted @ 2020-08-19 15:31 孟繁贵 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 1、nginx配置文件 http { #不显示版本号 server_tokens off; } 2、效果 配置前 配置后: 阅读全文
posted @ 2020-08-19 11:17 孟繁贵 阅读(3417) 评论(0) 推荐(0) 编辑
摘要: Vue.directive('role', { inserted: function (el, binding, vnode) { let role = binding.value if(role){ const applist = sessionStorage.getItem("applist") 阅读全文
posted @ 2020-08-14 18:13 孟繁贵 阅读(397) 评论(0) 推荐(0) 编辑
摘要: 1、execa 进程管理 https://www.npmjs.com/package/execa 支持promise 2、shelljs shell脚本 https://developer.aliyun.com/mirror/npm/package/shelljs 同步操作 3、listr http 阅读全文
posted @ 2020-08-13 16:19 孟繁贵 阅读(1279) 评论(0) 推荐(0) 编辑
摘要: 1、nginx配置请参考 https://www.cnblogs.com/mengfangui/p/12165096.html 2、webpack配置 以vuecli脚手架为示例代码: const CompressionPlugin = require('compression-webpack-pl 阅读全文
posted @ 2020-08-12 17:00 孟繁贵 阅读(397) 评论(0) 推荐(1) 编辑
摘要: 1、未使用externals 本项目以vue-cli脚手架为示例。未使用externals时,构建物中chunk-vendor.js体积90k。 其中:vue代码会打包到chunk-vendor.js。 2、使用external (1)vue.config.js修改 其中:键,就是用npm inst 阅读全文
posted @ 2020-08-12 15:03 孟繁贵 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 1.官网 https://github.com/search?q=stars:%3E1&s=stars&type=Repositories 2、github中文社区 https://www.githubs.cn/ 3、手动搜索 如:stars:>10000 webpack loader stars: 阅读全文
posted @ 2020-08-12 10:57 孟繁贵 阅读(2989) 评论(0) 推荐(0) 编辑
摘要: 悟空H5专题采用的是前后端分离方案,服务器域名和专题域名不一致,会受到浏览器同源策略影响。 我们发现数据主接口会发起两次,其中第一个请求为预检请求。 一般来说使用 application/json 的 post 请求是必然会带入 OPTION 请求,何为 OPTION 预检: 用于获取目的资源所支持 阅读全文
posted @ 2020-08-11 12:05 孟繁贵 阅读(2261) 评论(0) 推荐(0) 编辑
摘要: Toolkit是将常用函数实现 详见http://39.106.100.155:1387/ 阅读全文
posted @ 2020-08-02 00:18 孟繁贵 阅读(237) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 88 下一页
TOP