feat(nx): add appropriate favicons for different frameworks (#1157)

This commit is contained in:
Jason Jean 2019-03-11 16:12:37 -04:00 committed by GitHub
parent 7d599269e7
commit 0c0788880d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

View File

@ -10,7 +10,8 @@ import {
apply,
template,
move,
url
url,
MergeStrategy
} from '@angular-devkit/schematics';
import { Schema } from './schema';
import * as ts from 'typescript';
@ -197,7 +198,8 @@ function addApplicationFiles(options: NormalizedSchema): Rule {
tmpl: ''
}),
move(options.appProjectRoot)
])
]),
MergeStrategy.Overwrite
);
}