From 5915b3f0cacc534c1c3a2285bbeb1491e992be02 Mon Sep 17 00:00:00 2001 From: Mike Brocchi Date: Fri, 27 Apr 2018 16:16:33 -0700 Subject: [PATCH] docs: Update font awesome story. --- .../documentation/stories/include-font-awesome.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/docs/documentation/stories/include-font-awesome.md b/docs/documentation/stories/include-font-awesome.md index a9973d3f5214..cab507941836 100644 --- a/docs/documentation/stories/include-font-awesome.md +++ b/docs/documentation/stories/include-font-awesome.md @@ -19,12 +19,15 @@ npm install --save font-awesome To add Font Awesome CSS icons to your app... ```json -// in .angular-cli.json - -"styles": [ - "styles.css", - "../node_modules/font-awesome/css/font-awesome.css" -] +// in angular.json +"build": { + "options": { + "styles": [ + "../node_modules/font-awesome/css/font-awesome.css" + "styles.css" + ], + } +} ``` ### Using SASS