You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
20
+
`DllPlugin`과 `DllReferencePlugin`은 빌드 시간 성능을 크게 향상시키는 방식으로 번들을 분할하는 수단을 제공합니다. "DLL"이라는 용어는 원래 Microsoft에서 도입한 동적 링크 라이브러리를 나타냅니다.
19
21
20
22
## DllPlugin
21
23
22
-
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.
24
+
이 플러그인은 dll 전용 번들을 생성하기 위해 단독으로 별도의 webpack 설정에서 사용됩니다. 의존성을 매핑하기 위해 [`DllReferencePlugin`](#dllreferenceplugin)에서 사용하는 `manifest.json`파일을 생성합니다.
23
25
24
-
-`context` (optional): context of requests in the manifest file (defaults to the webpack context.)
25
-
-`format` (boolean = false): If `true`, manifest json file (output) will be formatted.
26
-
-`name`: name of the exposed dll function ([TemplatePaths](https://github.com/webpack/webpack/blob/master/lib/TemplatedPathPlugin.js): `[fullhash]` & `[name]` )
27
-
-`path`: **absolute path**to the manifest json file (output)
28
-
-`entryOnly` (boolean = true): if `true`, only entry points will be exposed
29
-
-`type`: type of the dll bundle
26
+
-`context` (선택): 매니페스트 파일의 요청 컨텍스트 (기본값은 webpack 컨텍스트)
27
+
-`format` (boolean = false): `true`인 경우 매니페스트 json 파일(출력)이 형식화됩니다.
28
+
-`name`: 노출된 dll 함수의 이름 ([TemplatePaths](https://github.com/webpack/webpack/blob/master/lib/TemplatedPathPlugin.js): `[fullhash]` & `[name]` )
29
+
-`path`: 매니페스트 json 파일의 **절대 경로**(출력)
30
+
-`entryOnly` (boolean = true): `true`인 경우 엔트리 포인트만 노출됩니다.
31
+
-`type`: dll 번들의 유형
30
32
31
33
```javascript
32
34
newwebpack.DllPlugin(options);
33
35
```
34
36
35
-
W> We recommend using DllPlugin only with `entryOnly: true`, otherwise tree shaking in the DLL won't work as all the exports might be used.
37
+
W> DllPlugin을 `entryOnly: true`와 함께 사용하는 것을 권장합니다. 그렇지 않으면 모든 export가 사용될 수 있으므로 DLL에서 트리 쉐이킹이 작동하지 않습니다.
36
38
37
-
Creates a `manifest.json` which is written to the given `path`. It contains mappings from require and import requests to module ids. It is used by the `DllReferencePlugin`.
39
+
주어진 `경로`에 기록되는 `manifest.json`을 생성합니다. 여기에는 require와 import 요청에서 모듈 id로의 매핑이 포함됩니다. 이는 `DllReferencePlugin` 에서 사용됩니다.
38
40
39
-
Combine this plugin with [`output.library`](/configuration/output/#outputlibrary) option to expose (aka, put into the global scope) the dll function.
41
+
이 플러그인을 [`output.library`](/configuration/output/#outputlibrary)옵션과 결합하여 dll 함수를 노출(전역 범위로 확대)합니다.
40
42
41
43
## DllReferencePlugin
42
44
43
-
This plugin is used in the primary webpack config, it references the dll-only-bundle(s) to require pre-built dependencies.
45
+
이 플러그인은 기본 webpack 설정에서 사용되며, 사전 빌드된 의존성을 require 하기 위해 dll 전용 번들을 참조합니다.
44
46
45
-
-`context`: (**absolute path**) context of requests in the manifest (or content property)
46
-
-`extensions`: Extensions used to resolve modules in the dll bundle (only used when using 'scope').
47
-
-`manifest` : an object containing `content`and`name` or a string to the absolute path of the JSON manifest to be loaded upon compilation
48
-
-`content` (optional): the mappings from request to module id (defaults to`manifest.content`)
49
-
-`name` (optional): an identifier where the dll is exposed (defaults to `manifest.name`) (see also [`externals`](/configuration/externals/))
50
-
-`scope` (optional): prefix which is used for accessing the content of the dll
51
-
-`sourceType` (optional): how the dll is exposed ([libraryTarget](/configuration/output/#outputlibrarytarget))
47
+
-`context`: 매니페스트(또는 콘텐츠 프로퍼티)에 있는 요청의 (**절대 경로**) 컨텍스트
48
+
-`extensions`: dll 번들의 모듈을 해결하는데 사용되는 확장입니다(‘유효범위’를 사용할 때만 사용).
49
+
-`manifest` : `content`및`name`을 포함하는 객체 또는 컴파일 시 로드될 JSON 매니페스트의 절대 경로에 대한 문자열
50
+
-`content` (선택): 요청에서 모듈 id 로의 매핑(기본값은`manifest.content`)
51
+
-`name` (선택): dll이 노출되는 식별자(기본값은 `manifest.name`)([`externals`](/configuration/externals/) 참조)
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.
75
+
dll의 콘텐츠는 현재 디렉터리에 매핑됩니다. 필요한 파일이 dll의 파일과 확인 후 일치하는 경우, dll의 파일이 대신 사용됩니다.
74
76
75
-
Because this happens after resolving every file in the dll bundle, the same paths must be available for the consumer of the dll bundle. i.e. if the dll contains `lodash`and the file`abc`, `require('lodash')`and `require('./abc')`will be used from the dll, rather than building them into the main bundle.
77
+
이것은 dll 번들의 모든 파일을 해석한 후 발생하기 때문에 dll 번들의 사용자에 대해 동일한 경로를 사용할 수 있어야 합니다. 즉, dll에 `lodash`가 포함되어 있고`abc` 파일이 있으면 `require('lodash')`및`require('./abc')`가 메인 번들로 빌드되지 않고 dll에서 사용됩니다.
76
78
77
79
## Usage
78
80
79
-
W> `DllReferencePlugin` and `DllPlugin` are used in _separate_ webpack configs.
0 commit comments