Skip to content
This repository has been archived by the owner on Nov 12, 2017. It is now read-only.

Commit

Permalink
Merge pull request #268 from mattkrick/patch-1
Browse files Browse the repository at this point in the history
fix typos and dead ssr link
  • Loading branch information
Robin Frischmann committed Apr 25, 2016
2 parents d6c53de + 15316f7 commit 6350655
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/react-look/docs/GettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ which is similar to the following CSS code:

You could also use the [DynamicPrefixer](../prefixer/DynamicPrefixer.md) to add only prefixes that are actually required. It uses data provided by [caniuse.com](caniuse.com) and evaluates the `userAgent` for browser information.

In generally to add a prefixer you will need to use the `prefixer` key of your config object and create a new prefixer instance.
In general, to add a prefixer you will need to use the `prefixer` key of your config object and create a new prefixer instance.
```javascript
importDynamicPrefixer, Presets } from 'react-look'

Expand All @@ -315,7 +315,7 @@ config.prefixer = new DynamicPrefixer({userAgent: navigator.userAgent})
## 9. Server-side rendering
Look also fully supports server-side rendering with minimal additional configuration.<br>
You basically prerender your static HTML string as well as your static CSS styles. This is most likely done directly within the request.<br>
e.g. [universal example](../../demo/server.js) (`npm run demo:universal`) using an [express](http://expressjs.com/) server.
e.g. [universal example](https://github.com/rofrischmann/react-look/blob/develop/packages/react-look/demo/server.js) (`npm run demo:universal`) using an [express](http://expressjs.com/) server.
##### index.html
```HTML
<html>
Expand Down Expand Up @@ -357,7 +357,7 @@ app.get('/', (req, res) => {
```
## 10. DevTools
DevTools are **special** plugins used to boost **your** developer experience *(also now as DX)*. They come in handy if you want to *e.g.* debug your code or quality-proof it.
DevTools are **special** plugins used to boost **your** developer experience *(also known as DX)*. They come in handy if you want to *e.g.* debug your code or quality-proof it.
Look also provides some devTools which can be easily applied by just adding them to the plugins list, but you should **only use them for development**.
> Check out [Plugins.md](../Plugins.md#devtools) for an overview of all devTools.
Expand Down

0 comments on commit 6350655

Please sign in to comment.