Merge pull request #462 from MrSurana/master
moved all app icons to assets/icons folder
14
angular.json
@@ -17,12 +17,7 @@
|
|||||||
"tsConfig": "src/tsconfig.app.json",
|
"tsConfig": "src/tsconfig.app.json",
|
||||||
"polyfills": "src/polyfills.ts",
|
"polyfills": "src/polyfills.ts",
|
||||||
"assets": [
|
"assets": [
|
||||||
"src/assets",
|
"src/assets"
|
||||||
"src/favicon.ico",
|
|
||||||
"src/favicon.png",
|
|
||||||
"src/favicon.icns",
|
|
||||||
"src/favicon.256x256.png",
|
|
||||||
"src/favicon.512x512.png"
|
|
||||||
],
|
],
|
||||||
"styles": [
|
"styles": [
|
||||||
"src/styles.scss"
|
"src/styles.scss"
|
||||||
@@ -121,12 +116,7 @@
|
|||||||
"src/styles.scss"
|
"src/styles.scss"
|
||||||
],
|
],
|
||||||
"assets": [
|
"assets": [
|
||||||
"src/assets",
|
"src/assets"
|
||||||
"src/favicon.ico",
|
|
||||||
"src/favicon.png",
|
|
||||||
"src/favicon.icns",
|
|
||||||
"src/favicon.256x256.png",
|
|
||||||
"src/favicon.512x512.png"
|
|
||||||
],
|
],
|
||||||
"customWebpackConfig": {
|
"customWebpackConfig": {
|
||||||
"path": "./angular.webpack.js",
|
"path": "./angular.webpack.js",
|
||||||
|
|||||||
@@ -20,19 +20,19 @@
|
|||||||
"!tslint.json"
|
"!tslint.json"
|
||||||
],
|
],
|
||||||
"win": {
|
"win": {
|
||||||
"icon": "dist",
|
"icon": "dist/assets/icons",
|
||||||
"target": [
|
"target": [
|
||||||
"portable"
|
"portable"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"mac": {
|
"mac": {
|
||||||
"icon": "dist",
|
"icon": "dist/assets/icons",
|
||||||
"target": [
|
"target": [
|
||||||
"dmg"
|
"dmg"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"linux": {
|
"linux": {
|
||||||
"icon": "dist",
|
"icon": "dist/assets/icons",
|
||||||
"target": [
|
"target": [
|
||||||
"AppImage"
|
"AppImage"
|
||||||
]
|
]
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
@@ -6,7 +6,7 @@
|
|||||||
<base href="">
|
<base href="">
|
||||||
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<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>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<app-root>Loading...</app-root>
|
<app-root>Loading...</app-root>
|
||||||
|
|||||||