/
githubmirror
/
strapi
Обзор
Документация
Войти
/
githubmirror
/
strapi
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
examples/kitchensink/src/admin/app.example.js
37 строк
1 KB
Sumin Kim
fix typo
29 ноя 2022, 04:54
Не верифицирован
29 ноя 2022, 04:54
89198e8
Код
Авторство
О чём код?
import theme from './extensions/theme'; const config = { auth: { logo: 'https://images.unsplash.com/photo-1593642634367-d91a135587b5?ixid=MnwxMjA3fDF8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=750&q=80', }, head: { favicon: 'https://images.unsplash.com/photo-1593642634367-d91a135587b5?ixid=MnwxMjA3fDF8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=750&q=80', title: 'Strapi test', }, locales: ['fr', 'de'], menu: { logo: 'https://images.unsplash.com/photo-1593642634367-d91a135587b5?ixid=MnwxMjA3fDF8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=750&q=80', }, theme, translations: { fr: { 'Auth.form.email.label': 'test', Users: 'Utilisateurs', City: 'CITY FRENCH', // Customize the label of the CM table.. Id: 'ID french', }, }, tutorials: false, notifications: { releases: false }, }; const bootstrap = (app) => { console.log(app); }; export default { config, bootstrap, };