Skip to content

Commit cc24197

Browse files
author
jeek
committed
fix: fix googleAnalytics ga
1 parent 6ca46c8 commit cc24197

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

config.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"index_name": "zkkysqs-blog",
33
"start_urls": [
4-
"https://docs.zkkysqs.top/"
4+
"https://blog.zkkysqs.top/"
55
],
66
"selectors": {
77
"lvl0": {
@@ -17,4 +17,4 @@
1717
"lvl6": ".content__default h6",
1818
"text": ".content__default p,.content__default li,.content__default a,.content__default span"
1919
}
20-
}
20+
}

deploy.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ git push -f https://github.com/Keekuun/keekuun.github.io.git master:gh-pages
2626

2727

2828
# coding
29-
#echo 'docs.zkkysqs.top' > CNAME
29+
#echo 'blog.zkkysqs.top' > CNAME
3030
#git add -A
3131
#git commit -m 'deploy'
3232
#git push -f [email protected]:keekuun/notes/blog.git master:gh-pages # 发布到coding

docs/.vuepress/config/secretKeyConfig.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ module.exports = {
99
Indices: 'zkkysqs-blog',
1010
},
1111
googleAnalytics: {
12-
ga: 'UA-147067935-1c',
12+
ga: 'UA-147067935-1',
1313
}
14-
};
14+
};

docs/backEnd/go/10.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ func testDemo() {
232232
Age: 18,
233233
Height: 175.6,
234234
Hobby: []string{"Soccer", "Music"},
235-
P: Profile{Website: "docs.zkkysqs.top", Slogan: "stay hungry, stay foolish"},
235+
P: Profile{Website: "blog.zkkysqs.top", Slogan: "stay hungry, stay foolish"},
236236
}
237237

238238
data, err := json.Marshal(p)
@@ -255,7 +255,7 @@ func testDemo() {
255255
"Music"
256256
],
257257
"p": {
258-
"site": "docs.zkkysqs.top",
258+
"site": "blog.zkkysqs.top",
259259
"slogan": "stay hungry, stay foolish"
260260
},
261261
"p1": {

docs/frontEnd/JS/1.ajax.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Ajax : Asynochronous javascript and xml,即异步的js和xml。能利用js异步
7474
```js
7575
var xmlHttp = createXMLHttpRequest();
7676
// xmlHttp.open(Method, url, boolean)
77-
xmlHttp.open("GET", "https://docs.zkkysqs.top");
77+
xmlHttp.open("GET", "https://blog.zkkysqs.top");
7878
```
7979

8080
`xmlHttp.open(Method, url, true/false)`参数说明:

docs/frontEnd/JS/10.es6-async.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ tags:
1212

1313
## 1. 认识async/await函数
1414

15-
还记得学习promise时候的脑筋急转弯吗?[“把牛放进冰箱里,要几步?”](https://docs.zkkysqs.top/frontEnd/javascript/ES6-promise%E5%AD%A6%E4%B9%A0%E5%8F%8A%E6%89%8B%E5%86%99promise.html#_1-promise%E8%A6%81%E8%A7%A3%E5%86%B3%E7%9A%84%E9%97%AE%E9%A2%98%EF%BC%9A])
15+
还记得学习promise时候的脑筋急转弯吗?[“把牛放进冰箱里,要几步?”](https://blog.zkkysqs.top/frontEnd/javascript/ES6-promise%E5%AD%A6%E4%B9%A0%E5%8F%8A%E6%89%8B%E5%86%99promise.html#_1-promise%E8%A6%81%E8%A7%A3%E5%86%B3%E7%9A%84%E9%97%AE%E9%A2%98%EF%BC%9A])
1616

1717
```js
1818
// 第一步,打开冰箱

docs/frontEnd/JS/3.JS-design-patterns.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2292,7 +2292,7 @@ var imgProxy = (function() {
22922292
return {
22932293
setSrc: function(src) {
22942294
// 添加预览图片
2295-
Img.setSrc("https://docs.zkkysqs.top/images/avatar.png");
2295+
Img.setSrc("https://blog.zkkysqs.top/images/avatar.png");
22962296
img.src = src;
22972297
}
22982298
};

docs/other/network/http-cache.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ HTTP缓存分为强缓存和协商缓存。
108108

109109
`1.HTML采用协商缓存,用户每次请求index.html不拿浏览器缓存,直接请求服务器,这样就保证资源更新了,用户能马上访问到新资源,如果服务端返回304,这时候再拿浏览器的缓存的index.html。`
110110

111-
`2.JS/CSS/IMG采用强缓存,打包的时候给文件名加上hash值`,见[【webpack学习系列笔记-文件指纹策略】](https://docs.zkkysqs.top/other/webpack/Webpack%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0%E4%B9%8B%E5%9F%BA%E7%A1%80%E5%BA%94%E7%94%A8.html#_6-文件指纹策略-chunkhash、contenthash和hash)
111+
`2.JS/CSS/IMG采用强缓存,打包的时候给文件名加上hash值`,见[【webpack学习系列笔记-文件指纹策略】](https://blog.zkkysqs.top/other/webpack/Webpack%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0%E4%B9%8B%E5%9F%BA%E7%A1%80%E5%BA%94%E7%94%A8.html#_6-文件指纹策略-chunkhash、contenthash和hash)
112112

113113
### 2.1 nodejs服务器设置缓存:
114114

@@ -175,7 +175,7 @@ resp.setDateHeader("Expires", System.currentTimeMillis() + exp.longValue() * 100
175175
>
176176
> [彻底弄懂HTTP缓存机制及原理](https://www.cnblogs.com/chenqf/p/6386163.html)
177177
>
178-
> [【webpack学习系列笔记-文件指纹策略】](https://docs.zkkysqs.top/other/webpack/Webpack%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0%E4%B9%8B%E5%9F%BA%E7%A1%80%E5%BA%94%E7%94%A8.html#_6-文件指纹策略-chunkhash、contenthash和hash)
178+
> [【webpack学习系列笔记-文件指纹策略】](https://blog.zkkysqs.top/other/webpack/Webpack%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0%E4%B9%8B%E5%9F%BA%E7%A1%80%E5%BA%94%E7%94%A8.html#_6-文件指纹策略-chunkhash、contenthash和hash)
179179
>
180180
> [【HTTP 304状态码的详细讲解】](https://blog.csdn.net/huwei2003/article/details/70139062?utm_medium=distribute.pc_relevant.none-task-blog-title-1&spm=1001.2101.3001.4242)
181181
>

docs/other/webpack/7.use-css-modules.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ CSS Module配置极其简单,其原理简单:通过将CSS文件以模块的
9090

9191
## 3.配置webpack
9292

93-
> [webpack解析less或sass](https://docs.zkkysqs.top/other/webpack/Webpack%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0%E4%B9%8B%E5%9F%BA%E7%A1%80%E5%BA%94%E7%94%A8.html#_2-2-解析less或sass)
93+
> [webpack解析less或sass](https://blog.zkkysqs.top/other/webpack/Webpack%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0%E4%B9%8B%E5%9F%BA%E7%A1%80%E5%BA%94%E7%94%A8.html#_2-2-解析less或sass)
9494
>
9595
> [【Webpack4】CSS 配置之 postcss-loader](https://juejin.im/post/6844904017802297352)
9696

0 commit comments

Comments
 (0)