1. Frontend Setup
What type of UI are you using?
1. Finish the Frontend guide.
2. Add apiBasePath
in the appInfo
object
App Info
Adjust these values based on the application that you are trying to configure. To learn more about what each field means check the references page.So the init
function call should look like:
import SuperTokens from "supertokens-auth-react";
SuperTokens.init({
appInfo: {
appName: "<YOUR_APP_NAME>",
apiDomain: "<YOUR_API_DOMAIN>",
websiteDomain: "<YOUR_WEBSITE_DOMAIN>",
apiBasePath: "/auth",
websiteBasePath: "/auth"
},
recipeList: []
});
- If you are hosting the frontend via Netlify as well, then the
apiDomain
and thewebsiteDomain
values will be the same. - An example of this
init
call can be seen here.