eugene
10/20/2022, 8:50 PM/Users/eugenechan/Desktop/one-click-dao-builder/backend/node_modules/supertokens-node/lib/build/supertokens.js:347
.split(";")
^
TypeError: Cannot read properties of undefined (reading 'split')
has anyone faced this problem before?rp
10/21/2022, 3:17 AMeugene
10/21/2022, 3:18 AMSuperTokens.init({
framework: "express",
supertokens: {
// https://try.supertokens.com is for demo purposes. Replace this with the address of your core instance (sign up on supertokens.com), or self host a core.
connectionURI: process.env.SUPERTOKEN_CONNECT_URI,
apiKey: process.env.SUPETOKEN_CONNECT_KEY,
// apiKey: "IF YOU HAVE AN API KEY FOR THE CORE, ADD IT HERE",
},
appInfo: {
// learn more about this on https://supertokens.com/docs/session/appinfo
appName: "One click DAO builder",
apiDomain: "http://localhost:8000",
websiteDomain: "http://localhost:3000",
apiBasePath: "/auth",
websiteBasePath: "/auth",
},
recipeList: [
Session.init()
]
});
rp
10/21/2022, 3:19 AMeugene
10/21/2022, 3:39 AMrp
10/21/2022, 3:54 AM