app.js
1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
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": "Jasani Group",
"app.components.LeftMenu.navbrand.title": "Jasani Group",
"app.components.LeftMenu.navbrand.subtitle": "",
"Auth.form.welcome.title": "Welcome to Jasani Group",
"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,
};