Skip to content

Commit

Permalink
docs: add missing backticks (#26497)
Browse files Browse the repository at this point in the history
PR Close #26497
  • Loading branch information
alan-agius4 authored and mhevery committed Oct 17, 2018
1 parent 5a79dec commit 638aaec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions aio/content/cli/index.md
Expand Up @@ -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`.
<!-- * Learn more about *configuration options for Angular(links to new guide or topics TBD)*. -->


Expand Down
4 changes: 2 additions & 2 deletions aio/content/guide/build.md
Expand Up @@ -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.

<div class="alert is-helpful">>
<div class="alert is-helpful">
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:
Expand All @@ -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`.

Expand Down

0 comments on commit 638aaec

Please sign in to comment.