Change text on login page in admin bro

1.8k Views Asked by At

The login page in admin-bro says 'Welcome!'. I need to change it to something else. is it possible in AdminBro??

PS: I'm using version AdminBro v1.6.6. PPS: I've already tried this and the corresponding links. It doesn't work for me. Is it because of the version I have? Thanks in Advance!

1

There are 1 best solutions below

3
On BEST ANSWER

Inside your adminbro index file:


const locale = {
  translations: {
    labels: {
      // change Heading for Login
      loginWelcome: '',
    },
    messages: {
      loginWelcome: '',
    },
  },
};

const adminBro = new AdminBro({
  // databases: [db],
  resources: allResources,
  rootPath: '/admin',
  locale,
  branding: {
    companyName: '',
    softwareBrothers: false,
    logo: '',
  },
});