Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 871 Bytes

FAQ.md

File metadata and controls

21 lines (14 loc) · 871 Bytes

Frequently Asked Questions

Below are a number of questions or issues that have arisen from using the SDK.

Does this library have type definitions?

The types for this library are currently maintained by the community at Definitely Typed. The team is planning taking ownership of this library as discussed in auth0#572.

Getting Error: Can't resolve 'superagent-proxy' when bundling with Webpack

We have a dependency on rest-facade which requires but doesn't include superagent-proxy. This SDK doesn't support proxies, so this dependency is not required. To workaround this you can add the following to your webpack.config.js:

resolve: {
  alias: {
    'superagent-proxy': false
  }
}

Or install superagent-proxy yourself.