Skip to content

Commit

Permalink
fix: 잘못된 링크 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
saseungmin committed Oct 12, 2023
1 parent 411cc22 commit 85fe1ba
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 21 deletions.
2 changes: 1 addition & 1 deletion docs/web/cors/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 📚 CORS(Cross Origin Resource Sharing)

## 🤔 [CORS는 왜 이렇게 우리를 힘들게 하는걸까?](https://github.com/saseungmin/frontend-tech-interview/blob/main/web/cors/cors%EB%8A%94_%EC%99%9C_%EC%9D%B4%EB%A0%87%EA%B2%8C_%EC%9A%B0%EB%A6%AC%EB%A5%BC_%ED%9E%98%EB%93%A4%EA%B2%8C_%ED%95%98%EB%8A%94%EA%B1%B8%EA%B9%8C.md)
## 🤔 CORS는 왜 이렇게 우리를 힘들게 하는걸까?
- [출처](https://evan-moon.github.io/2020/05/21/about-cors/)

### 🎈 참고
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# 👉 [CORS는 왜 이렇게 우리를 힘들게 하는걸까?](https://evan-moon.github.io/2020/05/21/about-cors/)
# 👉 CORS는 왜 이렇게 우리를 힘들게 하는걸까?

> https://evan-moon.github.io/2020/05/21/about-cors/
## 💻 CORS에 대한 기본적인 내용
CORS는 Cross-Origin Resource Sharing의 줄임말로, 교차 출처 리소스 공유라고 한다.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# 👉 [브라우저는 웹페이지를 어떻게 그리나요? - Critical Rendering Path](https://m.post.naver.com/viewer/postView.nhn?volumeNo=8431285&memberNo=34176766)
# 👉 브라우저는 웹페이지를 어떻게 그리나요? - Critical Rendering Path

> https://m.post.naver.com/viewer/postView.nhn?volumeNo=8431285&memberNo=34176766
브라우저가 하나의 화면을 그려내는 이 과정을 **중요 렌더링 경로(Critical Rendering Path)** 라고 부른다.

Expand Down
4 changes: 3 additions & 1 deletion docs/web/브라우저의 동작 원리/reflow_repaint.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# 👉 [Reflow or Repaint(or ReDraw)과정 설명 및 최적화 방법](https://webclub.tistory.com/346)
# 👉 Reflow or Repaint(or ReDraw)과정 설명 및 최적화 방법

> https://webclub.tistory.com/346
## 💻 Reflow 발생
- 생성된 DOM 노드의 레이아웃 수치(너비, 높이, 위치 등) 변경 시 영향을 받은 모든 노드의(자신, 자식, 부모, 조상(결국 모든 노드)) 수치를 다시 계산하여(Recalculate) 렌더 트리를 재생성하는 과정.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# 👉 [브라우저는 어떻게 동작하는가?](https://d2.naver.com/helloworld/59361)
# 👉 브라우저는 어떻게 동작하는가?

> https://d2.naver.com/helloworld/59361
## 💻 소개

Expand Down
16 changes: 7 additions & 9 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,8 @@ const config = {
({
docs: {
sidebarPath: require.resolve('./sidebars.js'),
// Please change this to your repo.
// Remove this to remove the "edit this page" links.
editUrl:
'https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/',
'https://github.com/saseungmin/frontend-tech-interview/tree/main/',
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
Expand All @@ -54,7 +52,7 @@ const config = {
type: 'docSidebar',
sidebarId: 'tutorialSidebar',
position: 'left',
label: 'Tutorial',
label: 'Questions',
},
{
href: 'https://github.com/saseungmin/frontend-tech-interview',
Expand All @@ -70,7 +68,7 @@ const config = {
title: 'Docs',
items: [
{
label: 'Tutorial',
label: 'Questions',
to: '/docs/intro',
},
],
Expand All @@ -80,15 +78,15 @@ const config = {
items: [
{
label: 'Stack Overflow',
href: 'https://stackoverflow.com/questions/tagged/docusaurus',
href: '#',
},
{
label: 'Discord',
href: 'https://discordapp.com/invite/docusaurus',
href: '#',
},
{
label: 'Twitter',
href: 'https://twitter.com/docusaurus',
href: '#',
},
],
},
Expand All @@ -97,7 +95,7 @@ const config = {
items: [
{
label: 'GitHub',
href: 'https://github.com/facebook/docusaurus',
href: 'https://github.com/saseungmin',
},
],
},
Expand Down
7 changes: 0 additions & 7 deletions src/pages/markdown-page.md

This file was deleted.

0 comments on commit 85fe1ba

Please sign in to comment.