docs: add missing backticks (#26497)

PR Close #26497
This commit is contained in:
Alan 2018-10-17 14:57:37 +02:00 committed by Misko Hevery
parent 5a79decba4
commit 638aaecc7d
2 changed files with 4 additions and 4 deletions

View File

@ -58,7 +58,7 @@ 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. 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. 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`.
<!-- * Learn more about *configuration options for Angular(links to new guide or topics TBD)*. --> <!-- * Learn more about *configuration options for Angular(links to new guide or topics TBD)*. -->

View File

@ -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. See the [browserslist repo](https://github.com/ai/browserslist) for more examples of how to target specific browsers and versions.
<div class="alert is-helpful">> <div class="alert is-helpful">
Backward compatibility 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: 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 ## 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. 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`. 1. Create a file `proxy.conf.json` in the projects `src/` folder, next to `package.json`.