From 638aaecc7da54767680ee1660ac45f686c9815fe Mon Sep 17 00:00:00 2001 From: Alan Date: Wed, 17 Oct 2018 14:57:37 +0200 Subject: [PATCH] docs: add missing backticks (#26497) PR Close #26497 --- aio/content/cli/index.md | 4 ++-- aio/content/guide/build.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aio/content/cli/index.md b/aio/content/cli/index.md index f9a6fd305722b..0656cb827c6b4 100644 --- a/aio/content/cli/index.md +++ b/aio/content/cli/index.md @@ -58,9 +58,9 @@ When you use the [ng serve](cli/serve) command to build an app and serve it loca A single workspace configuration file, `angular.json`, is created at the top level of the workspace. This is where you can set workspace-wide defaults, and specify configurations to use when the CLI builds a project for different targets. -The `[ng config](cli/config) command lets you set and retrieve configuration values from the command line, or you can edit the `angular.json` file directly. +The [ng config](cli/config) command lets you set and retrieve configuration values from the command line, or you can edit the `angular.json` file directly. -* See the [complete schema](https://github.com/angular/angular-cli/wiki/angular-workspace) for `angular.json`. +* See the [complete schema](https://github.com/angular/angular-cli/wiki/angular-workspace) for `angular.json`. diff --git a/aio/content/guide/build.md b/aio/content/guide/build.md index 53238778a65f5..bfa401254c6d3 100644 --- a/aio/content/guide/build.md +++ b/aio/content/guide/build.md @@ -289,7 +289,7 @@ Autoprefixer looks for the Browserlist configuration when it prefixes your CSS. See the [browserslist repo](https://github.com/ai/browserslist) for more examples of how to target specific browsers and versions. -
> +
Backward compatibility If you want to produce a progressive web app and are using [Lighthouse](https://developers.google.com/web/tools/lighthouse/) to grade the project, add the following browserslist entry to your `package.json` file, in order to eliminate the [old flexbox](https://developers.google.com/web/tools/lighthouse/audits/old-flexbox) prefixes: @@ -309,7 +309,7 @@ If you want to produce a progressive web app and are using [Lighthouse](https:// ## Proxying to a backend server You can use the [proxying support](https://webpack.js.org/configuration/dev-server/#devserver-proxy) in the `webpack` dev server to divert certain URLs to a backend server, by passing a file to the `--proxy-config` build option. -For example, to divert all calls for http://localhost:4200/api to a server running on http://localhost:3000/api, take the following steps. +For example, to divert all calls for `http://localhost:4200/api` to a server running on `http://localhost:3000/api`, take the following steps. 1. Create a file `proxy.conf.json` in the projects `src/` folder, next to `package.json`.