app.js 1.12 KB
import AuthLogo from "./extensions/logo.png";
import favicon from "./extensions/favicon.ico";

const config = {
 auth: {
    logo: AuthLogo
  },
  menu: {
    logo: AuthLogo
  },
  head: {
    favicon: favicon
  },

  // Disable video tutorials
  tutorials: false,
  // Disable notifications about new Strapi releases
  notifications: { releases: false },
  translations: {
    en: {
      "app.components.LeftMenu.navbrand.title": "Offers",
      "app.components.LeftMenu.navbrand.title": "Offers",   
      "app.components.LeftMenu.navbrand.subtitle": "",
      "Auth.form.welcome.title": "Welcome to Offers",
      "Auth.form.welcome.subtitle": "Log in to your App"
    }
  },
  locales: [
    // 'ar',
    // 'fr',
    // 'cs',
    // 'de',
    // 'dk',
    // 'es',
    // 'he',
    // 'id',
    // 'it',
    // 'ja',
    // 'ko',
    // 'ms',
    // 'nl',
    // 'no',
    // 'pl',
    // 'pt-BR',
    // 'pt',
    // 'ru',
    // 'sk',
    // 'sv',
    // 'th',
    // 'tr',
    // 'uk',
    // 'vi',
    // 'zh-Hans',
    // 'zh',
  ],
};

const bootstrap = (app) => {
  console.log(app);
};

export default {
  config,
  bootstrap,
};