Where should add the CDN script?

Hi @leongrin! The best way to include auth0.js in your Angular project will be using the npm package. In your project’s root, run:

npm install auth0-js@latest --save

You will then be able to import auth0 in your Angular services like so:

import * as auth0 from 'auth0-js';
1 Like