Skip to content

Commit f5f1078

Browse files
authored
Merge pull request #91 from krsy0411/master
[번역][UI] web-component 생성 & 문서 번역 & 유튜브 동영상 재생 추가
2 parents c58c5ab + 2c140f0 commit f5f1078

32 files changed

Lines changed: 721 additions & 165 deletions

.eslintrc.js

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,12 @@ module.exports = {
33
browser: true,
44
es2021: true,
55
},
6-
extends: [
7-
'eslint:recommended',
8-
'plugin:react/recommended',
9-
'plugin:prettier/recommended',
10-
'prettier',
11-
],
6+
extends: ['eslint:recommended', 'plugin:prettier/recommended', 'prettier'],
127
parserOptions: {
13-
ecmaFeatures: {
14-
jsx: true,
15-
},
168
ecmaVersion: 12,
179
sourceType: 'module',
1810
},
19-
plugins: ['react', 'prettier'],
11+
plugins: ['prettier'],
2012
rules: {
2113
'prettier/prettier': 'error',
2214
},

.prettierrc

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
{
2+
"plugins": ["prettier-plugin-tailwindcss"],
23
"singleQuote": true,
3-
"trailingComma": "es5"
4+
"trailingComma": "es5",
5+
"tabWidth": 2,
6+
"semi": true,
7+
"endOfLine": "lf",
8+
"htmlWhitespaceSensitivity": "css",
9+
"bracketSpacing": true,
10+
"arrowParens": "always"
411
}

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"editor.formatOnSave": true,
2+
"editor.formatOnSave": false,
33
"editor.codeActionsOnSave": {
44
"source.fixAll.eslint": "always"
55
}

index.html

Lines changed: 64 additions & 125 deletions
Large diffs are not rendered by default.

package-lock.json

Lines changed: 89 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"eslint-config-prettier": "^10.0.1",
1515
"eslint-plugin-prettier": "^5.2.3",
1616
"prettier": "^3.5.1",
17+
"prettier-plugin-tailwindcss": "^0.6.11",
1718
"typescript": "~5.7.2",
1819
"vite": "^6.3.2"
1920
},

public/docs/get-started/docker-concepts/building-images/build-tag-and-publish-an-image.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
# Build, tag, and publish an image
22

3-
[유튜브 링크](https://youtu.be/chiiGLlYRlY)
3+
<div class="youtube-video">
4+
<iframe
5+
src="https://www.youtube.com/embed/chiiGLlYRlY"
6+
frameborder="0"
7+
allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
8+
allowfullscreen
9+
>
10+
</iframe>
11+
</div>
412
513
## Explanation
614

public/docs/get-started/docker-concepts/building-images/multi-stage-builds.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
# Multi-stage builds
2+
<div class="youtube-video">
3+
<iframe
4+
src="https://www.youtube.com/embed/vR185cjwxZ8"
5+
frameborder="0"
6+
allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
7+
allowfullscreen
8+
>
9+
</iframe>
10+
</div>
211
312
## Explanation
413

public/docs/get-started/docker-concepts/building-images/understanding-image-layers.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
# Understanding the image layers
22

3-
[유튜브 링크](https://youtu.be/wJwqtAkmtQA)
3+
<div class="youtube-video">
4+
<iframe
5+
src="https://www.youtube.com/embed/wJwqtAkmtQA"
6+
frameborder="0"
7+
allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
8+
allowfullscreen
9+
>
10+
</iframe>
11+
</div>
412
513
## Explanation
614

public/docs/get-started/docker-concepts/building-images/using-the-build-cache.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
# Using the build cache
22

3-
[유튜브 링크](https://youtu.be/Ri6jMknjprY)
3+
<div class="youtube-video">
4+
<iframe
5+
src="https://www.youtube.com/embed/Ri6jMknjprY"
6+
frameborder="0"
7+
allow="accelerometer; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
8+
allowfullscreen
9+
>
10+
</iframe>
11+
</div>
412
513
## Explanation
614

0 commit comments

Comments
 (0)