Skip to content

Commit 1c42ee2

Browse files
author
Tom Kirkpatrick
committed
docs: reference correct require path
1 parent 96c2b49 commit 1c42ee2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ INSTALL
1919
npm install --save loopback-ds-resultset-limit-mixin
2020
```
2121

22-
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:
22+
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:
2323
```js
2424
{
2525
"_meta": {
@@ -31,7 +31,7 @@ Then you should register the mixin in your app by adding `../node_modules/loopba
3131
],
3232
"mixins": [
3333
"loopback/common/mixins",
34-
"../node_modules/loopback-ds-resultset-limit-mixin/dist",
34+
"../node_modules/loopback-ds-resultset-limit-mixin/lib",
3535
"../common/mixins"
3636
]
3737
}

0 commit comments

Comments
 (0)