We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c34e3ac commit fd8211eCopy full SHA for fd8211e
admin/getting-started.md
@@ -27,7 +27,9 @@ Edit the `src/App.js` file like the following:
27
import React from 'react';
28
import { HydraAdmin } from '@api-platform/admin';
29
30
-export default () => <HydraAdmin entrypoint="https://demo.api-platform.com"/>; // Replace with your own API entrypoint
+// Replace with your own API entrypoint: if https://example.com/api/books is the path
31
+// to the collection of book resources, then the entrypoint is https://example.com/api
32
+export default () => <HydraAdmin entrypoint="https://demo.api-platform.com"/>;
33
```
34
35
Be sure to make your API send proper [CORS HTTP headers](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS) to allow
0 commit comments