Skip to content

Commit

Permalink
docs: reference correct require path
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Kirkpatrick committed Jul 4, 2017
1 parent 96c2b49 commit 1c42ee2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ INSTALL
npm install --save loopback-ds-resultset-limit-mixin
```

Then you should register the mixin in your app by adding `../node_modules/loopback-ds-resultset-limit-mixin/dist` to the `mixins` property to your `server/model-config.json` like the following:
Then you should register the mixin in your app by adding `../node_modules/loopback-ds-resultset-limit-mixin/lib` to the `mixins` property to your `server/model-config.json` like the following:
```js
{
"_meta": {
Expand All @@ -31,7 +31,7 @@ Then you should register the mixin in your app by adding `../node_modules/loopba
],
"mixins": [
"loopback/common/mixins",
"../node_modules/loopback-ds-resultset-limit-mixin/dist",
"../node_modules/loopback-ds-resultset-limit-mixin/lib",
"../common/mixins"
]
}
Expand Down

0 comments on commit 1c42ee2

Please sign in to comment.