-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main'
- Loading branch information
Showing
12 changed files
with
40 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
4 changes: 4 additions & 0 deletions
4
config/nav/fragment/engineer.ts → config/routes/fragment/engineer.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,100 +1,33 @@ | ||
import browser from '../../routes/fragment/browser'; | ||
import engineer from '../../routes/fragment/engineer'; | ||
import javascript from '../../routes/fragment/javascript'; | ||
import leetcode from '../../routes/fragment/leetcode'; | ||
import net from '../../routes/fragment/net'; | ||
import typescript from '../../routes/fragment/typescript'; | ||
|
||
export default [ | ||
{ | ||
title: 'JavaScript', | ||
children: [ | ||
{ | ||
title: '原型与原型链', | ||
link: '/javascript/prototype', | ||
}, | ||
{ | ||
title: '作用域与作用域链', | ||
link: '/javascript/scope', | ||
}, | ||
{ | ||
title: '执行栈和执行上下文', | ||
link: '/javascript/execution-stack', | ||
}, | ||
{ | ||
title: '数据类型的转换', | ||
link: '/javascript/data-type-transform', | ||
}, | ||
{ | ||
title: '闭包', | ||
link: '/javascript/closure', | ||
}, | ||
{ | ||
title: '位置与尺寸', | ||
link: '/javascript/size-position', | ||
}, | ||
{ | ||
title: '阻止事件默认行为', | ||
link: '/javascript/prevent-default', | ||
}, | ||
{ | ||
title: '垃圾回收与内存泄漏', | ||
link: '/javascript/garbage-collection', | ||
}, | ||
{ | ||
title: '浮点数精度问题', | ||
link: '/javascript/floating-point-precision', | ||
}, | ||
{ | ||
title: '事件循环', | ||
link: '/javascript/event-loop', | ||
}, | ||
], | ||
children: javascript, | ||
}, | ||
{ | ||
title: '网络', | ||
children: [ | ||
{ | ||
title: 'HTTP 缓存协议', | ||
link: '/net/http_cache_proto', | ||
}, | ||
], | ||
children: net, | ||
}, | ||
{ | ||
title: '浏览器', | ||
children: [ | ||
{ | ||
title: '浏览器缓存', | ||
link: '/browser/browser_cache', | ||
}, | ||
{ | ||
title: '资源提示关键词', | ||
link: '/browser/resource_prompt_keyword', | ||
}, | ||
{ | ||
title: '浏览器渲染流程', | ||
link: '/browser/render', | ||
}, | ||
], | ||
children: browser, | ||
}, | ||
{ | ||
title: '工程化', | ||
children: [ | ||
{ | ||
title: 'NPM Script', | ||
link: '/engineer/npm_script', | ||
}, | ||
], | ||
children: engineer, | ||
}, | ||
{ | ||
title: '算法', | ||
children: [ | ||
{ | ||
title: '回溯', | ||
link: '/leetcode/backtrack', | ||
}, | ||
], | ||
children: leetcode, | ||
}, | ||
{ | ||
title: 'TypeScript', | ||
children: [ | ||
{ | ||
title: '内置类型', | ||
link: '/typescript/build-in-type', | ||
}, | ||
], | ||
children: typescript, | ||
}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
title: 转载 | ||
desciption: 工程化部分转载文章 | ||
keywords: | ||
- 工程化 | ||
- 转载 | ||
- 代码规范 | ||
group: | ||
title: 工程化 | ||
toc: content | ||
order: 1 | ||
--- | ||
|
||
## 简介 | ||
|
||
:::info{title=TIP} | ||
为什么这么写呢?因为 dumi 本身 sidebar 的配置看起来是不支持 https 的链接的,会直接拼接在当前 url 的后面 | ||
::: | ||
|
||
- [前端工程化之代码规范](https://juejin.cn/post/7356138322367807526) |