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
Copy file name to clipboardExpand all lines: docs/ko/using-electron-packager.md
+11-11Lines changed: 11 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -1,18 +1,18 @@
1
-
# Using [`electron-packager`](https://github.com/electron-userland/electron-packager)
1
+
# [`electron-packager`](https://github.com/electron-userland/electron-packager) 사용하기
2
2
3
-
All builds produced by `electron-packager` can be found within the `build`folder.
3
+
`electron-packager`가 생성 한 모든 빌드는 `build`폴더에서 찾을 수 있습니다.
4
4
5
-
#### Building for all platforms
5
+
#### 모든 플랫폼 빌드
6
6
7
-
Please know that not all Operating Systems can build for all other platforms.
7
+
모든 운영체제가 다른 모든 플랫폼을 위한 빌드를 할 수있는 것은 아닙니다.
8
8
9
9
```bash
10
10
npm run build
11
11
```
12
12
13
-
#### Building for a specific platform
13
+
#### 특정 플랫폼 빌드
14
14
15
-
Platforms include `darwin`, `mas`, `linux`and`win32`.
15
+
플랫폼에는 `darwin`, `mas`, `linux`및`win32`가 포함됩니다.
16
16
17
17
```bash
18
18
# build for darwin (macOS)
@@ -21,19 +21,19 @@ npm run build:darwin
21
21
22
22
#### Cleaning
23
23
24
-
Delete all builds from `build`.
24
+
`build` 폴더에 있는 모든 빌드를 제거합니다.
25
25
26
26
```bash
27
27
npm run build:clean
28
28
```
29
29
30
-
### A note for non-Windows users
30
+
### non-Windows 사용자를 위한 주의사항
31
31
32
-
If you are wanting to build for Windows **with a custom icon**using a non-Windows platform, you must have [wine](https://www.winehq.org/) installed. [More Info](https://github.com/electron-userland/electron-packager#building-windows-apps-from-non-windows-platforms).
32
+
non-Windows 플랫폼을 사용하여 **사용자 정의 아이콘이 있는**Windows를 위한 빌드를 하려면 [wine](https://www.winehq.org/)을 설치해야합니다. [More Info](https://github.com/electron-userland/electron-packager#building-windows-apps-from-non-windows-platforms).
33
33
34
-
### Default building configurations
34
+
### 디폴트 빌드 구성
35
35
36
-
Further customization can be made at `.electron-vue/build.config.js` in accordance to `electron-packager`'s options found [here](https://github.com/electron-userland/electron-packager/blob/master/docs/api.md#options). The name applied to your built application is set with the `productName` value in your `package.json`.
36
+
[여기서](https://github.com/electron-userland/electron-packager/blob/master/docs/api.md#options)`electron-packager`의 옵션에 찾아서 `.electron-vue/build.config.js`에 추가하여 사용자 정의를 할 수 있습니다. 빌드 애플리케이션에 적용된 이름은 `package.json`의 `productName` 값으로 설정됩니다.
0 commit comments