Skip to content

Commit 7d6bb69

Browse files
committed
moved all app icons to assets/icons folder
1 parent 7276d96 commit 7d6bb69

8 files changed

+7
-17
lines changed

Diff for: angular.json

+3-13
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,7 @@
1717
"tsConfig": "src/tsconfig.app.json",
1818
"polyfills": "src/polyfills.ts",
1919
"assets": [
20-
"src/assets",
21-
"src/favicon.ico",
22-
"src/favicon.png",
23-
"src/favicon.icns",
24-
"src/favicon.256x256.png",
25-
"src/favicon.512x512.png"
20+
"src/assets"
2621
],
2722
"styles": [
2823
"src/styles.scss"
@@ -121,12 +116,7 @@
121116
"src/styles.scss"
122117
],
123118
"assets": [
124-
"src/assets",
125-
"src/favicon.ico",
126-
"src/favicon.png",
127-
"src/favicon.icns",
128-
"src/favicon.256x256.png",
129-
"src/favicon.512x512.png"
119+
"src/assets"
130120
],
131121
"customWebpackConfig": {
132122
"path": "./angular.webpack.js",
@@ -178,4 +168,4 @@
178168
"prefix": "app"
179169
}
180170
}
181-
}
171+
}

Diff for: electron-builder.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,19 @@
2020
"!tslint.json"
2121
],
2222
"win": {
23-
"icon": "dist",
23+
"icon": "dist/assets/icons",
2424
"target": [
2525
"portable"
2626
]
2727
},
2828
"mac": {
29-
"icon": "dist",
29+
"icon": "dist/assets/icons",
3030
"target": [
3131
"dmg"
3232
]
3333
},
3434
"linux": {
35-
"icon": "dist",
35+
"icon": "dist/assets/icons",
3636
"target": [
3737
"AppImage"
3838
]
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

Diff for: src/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<base href="">
77

88
<meta name="viewport" content="width=device-width, initial-scale=1">
9-
<link rel="icon" type="image/x-icon" href="favicon.ico">
9+
<link rel="icon" type="image/x-icon" href="assets/icons/favicon.ico">
1010
</head>
1111
<body>
1212
<app-root>Loading...</app-root>

0 commit comments

Comments
 (0)