accounts-common.js 235 B

123456789
  1. Meteor.startup(() => {
  2. if (Meteor.isServer) {
  3. import { AccountsCommon } from 'meteor/accounts-base';
  4. Accounts.config({
  5. loginExpirationInDays: process.env.ACCOUNTS_COMMON_LOGIN_EXPIRATION_IN_DAYS || 90,
  6. });
  7. }
  8. });