Hi all,
I'm new to SuperTokens.
I'm using PasswordLess authentication. I have followed the recipe. I do have a nice Sign In which is quite straightforward and works well, thanks for that! However, I don't have any
*SIGN UP * and I don't get why. I added the first users through the Supertokens UI.
I'm using NextJS. My back-end config is the following :
return {
debug: true,
framework: "custom",
supertokens: {
connectionURI:
process.env.SUPERTOKENS_URI || "https://try.supertokens.com",
apiKey: process.env.SUPERTOKENS_API_KEY,
},
appInfo: appInfo("backend"),
recipeList: [
PasswordlessNode.init({
flowType: "MAGIC_LINK",
contactMethod: "EMAIL",
emailDelivery: {...}
}),
SessionNode.init(),
Dashboard.init(),
UserRoles.init(),
UserMetadata.init(),
],
isInServerlessEnv: true,
};
};
Could somebody help me?