Skip to content

Commit

Permalink
moved all app icons to assets/icons folder
Browse files Browse the repository at this point in the history
  • Loading branch information
MrSurana committed Mar 28, 2020
1 parent 7276d96 commit 7d6bb69
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 17 deletions.
16 changes: 3 additions & 13 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,7 @@
"tsConfig": "src/tsconfig.app.json",
"polyfills": "src/polyfills.ts",
"assets": [
"src/assets",
"src/favicon.ico",
"src/favicon.png",
"src/favicon.icns",
"src/favicon.256x256.png",
"src/favicon.512x512.png"
"src/assets"
],
"styles": [
"src/styles.scss"
Expand Down Expand Up @@ -121,12 +116,7 @@
"src/styles.scss"
],
"assets": [
"src/assets",
"src/favicon.ico",
"src/favicon.png",
"src/favicon.icns",
"src/favicon.256x256.png",
"src/favicon.512x512.png"
"src/assets"
],
"customWebpackConfig": {
"path": "./angular.webpack.js",
Expand Down Expand Up @@ -178,4 +168,4 @@
"prefix": "app"
}
}
}
}
6 changes: 3 additions & 3 deletions electron-builder.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,19 @@
"!tslint.json"
],
"win": {
"icon": "dist",
"icon": "dist/assets/icons",
"target": [
"portable"
]
},
"mac": {
"icon": "dist",
"icon": "dist/assets/icons",
"target": [
"dmg"
]
},
"linux": {
"icon": "dist",
"icon": "dist/assets/icons",
"target": [
"AppImage"
]
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<base href="">

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

0 comments on commit 7d6bb69

Please sign in to comment.