in nodejs what i have to pass in recipeList this ...
# support-questions-legacy
d
in nodejs what i have to pass in recipeList this is code - const express = require('express'); const supertokens = require('supertokens-node'); const app = express(); supertokens.init({ supertokens: SuperTokens, appInfo: { appName: 'YourAppName', apiDomain: 'http://localhost:3000', websiteDomain: 'http://localhost:3000', }, recipeList: [ // here <<<<================================= ], }); app.use(supertokens.middleware()); const PORT = process.env.PORT || 3000; app.listen(PORT, () => { console.log(
Server is running on http://localhost:${PORT}
); }); do we have any ref for same ?
2 Views