-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Translate plugins/dll-plugin.mdx #381
Conversation
src/content/plugins/dll-plugin.mdx
Outdated
related: | ||
- title: Code Splitting Example | ||
url: https://github.com/webpack/webpack/blob/master/examples/explicit-vendor-chunk/README.md | ||
--- | ||
|
||
The `DllPlugin` and `DllReferencePlugin` provide means to split bundles in a way that can drastically improve build time performance. The term "DLL" stands for Dynamic-link library which was originally introduced by Microsoft. | ||
`DllPlugin`과`DllReferencePlugin`은 빌드 시간 성능을 크게 향상시키는 방식으로 번들을 분할하는 수단을 제공합니다. "DLL"이라는 용어는 원래 Microsoft에서 도입한 동적 링크 라이브러리를 나타냅니다. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
띄어쓰기 추가
DllPlugin
과DllReferencePlugin
은 -> DllPlugin
과 DllReferencePlugin
은
src/content/plugins/dll-plugin.mdx
Outdated
|
||
## DllPlugin | ||
|
||
This plugin is used in a separate webpack configuration exclusively to create a dll-only-bundle. It creates a `manifest.json` file, which is used by the [`DllReferencePlugin`](#dllreferenceplugin) to map dependencies. | ||
이 플러그인은 dll 전용 번들을 생성하기 위해 단독으로 별도의 webpack 설정에서 사용됩니다. 의존성을 매핑하기 위해 [`DllReferencePlugin`](#dllreferenceplugin) 에서 사용하는 `manifest.json`파일을 생성합니다. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
띄어쓰기 제거
DllReferencePlugin
에서 -> DllReferencePlugin
에서
src/content/plugins/dll-plugin.mdx
Outdated
|
||
#### Mapped Mode | ||
|
||
The content of the dll is mapped to the current directory. If a required file matches a file in the dll (after resolving), then the file from the dll is used instead. | ||
dll의 콘텐츠는 현재 디렉터리에 매핑됩니다. 필요한 파일이 dll의 파일과 (확인 후) 일치하는 경우, dll의 파일이 대신 사용됩니다. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(확인 후)
부분이 괄호가 해제되어 있어도 읽을 때 어색하지 않은 것 같아요! 괄호를 없애고 나열하는 것은 어떨까요??
@YukJiSoo 감사합니다 :) 리뷰해주신 부분 적용했습니다! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍👍👍
Summary
#7
리뷰 참고 사항
Glossary