forked from shopbuilder-app/shopbuilder-app.github.io
-
Notifications
You must be signed in to change notification settings - Fork 2
/
docusaurus.config.js
165 lines (155 loc) · 4.45 KB
/
docusaurus.config.js
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
// @ts-check
// Note: type annotations allow type checking and IDEs autocompletion
const lightCodeTheme = require("prism-react-renderer/themes/github");
const darkCodeTheme = require("prism-react-renderer/themes/dracula");
/** @type {import('@docusaurus/types').Config} */
const config = {
title: "Document - FluxBuilder - An Ultimate Approach For Flutter Mobile Apps",
tagline: "",
url: "https://docs.fluxbuilder.com",
baseUrl: "/",
onBrokenLinks: "warn",
onBrokenMarkdownLinks: "warn",
favicon: "img/favicon.ico",
organizationName: "fluxbuilder-docs", // Usually your GitHub org/user name.
projectName: "fluxbuilder-docs.github.io", // Usually your repo name.
deploymentBranch: "gh-pages",
presets: [
[
"classic",
/** @type {import('@docusaurus/preset-classic').Options} */
({
docs: {
routeBasePath: "/", // Serve the docs at the site's root
sidebarPath: require.resolve('./sidebars.js'), // `undefined` to create a fully autogenerated
},
blog: false,
theme: {
customCss: [
require.resolve("./css/docu-notion-styles.css"),
require.resolve(
"./css/gifplayer.css"
//"./node_modules/react-gif-player/dist/gifplayer.css" // this gave a big red compile warning which is seaming unrelated " Replace Autoprefixer browsers option to Browserslist config..."
),
],
},
gtag: {
trackingID: 'G-QKWPZEM3TZ',
anonymizeIP: true,
},
}),
],
],
i18n: {
defaultLocale: "en",
locales: ["en"],
localeConfigs: {
en: {
label: "English",
direction: "ltr",
htmlLang: "en-US",
calendar: "gregory",
},
},
},
themes: [
// ... Your other themes.
[
require.resolve("@easyops-cn/docusaurus-search-local"),
{
// ... Your options.
// `hashed` is recommended as long-term-cache of index file is possible.
hashed: true,
// language: ["en", "fr"],
indexBlog: false,
indexPages: false,
docsRouteBasePath: "/",
},
],
],
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
metadata: [
{
name: "keywords",
content: "Document - FluxBuilder - An Ultimate Approach For Flutter Mobile Apps",
},
],
sitemap: {
// https://www.sitemaps.org/protocol.html#xmlTagDefinitions
changefreq: "weekly",
priority: 0.5,
ignorePatterns: [],
},
navbar: {
title: "",
hideOnScroll: true,
logo: {
alt: "Logo",
src: "img/logo.png",
srcDark: 'img/logo_dark.png',
href: 'https://fluxbuilder.com',
target: '_self',
},
items: [
{
href: 'https://fluxbuilder.com',
position: 'right',
className: 'header-link',
label: 'Home',
},
{
href: 'https://fluxbuilder.com/feature',
position: 'right',
className: 'header-link',
label: 'Feature',
},
{
href: 'https://fluxbuilder.com/agency',
position: 'right',
className: 'header-link',
label: 'Agency',
},
{
href: 'https://fluxbuilder.com/pricing',
position: 'right',
className: 'header-link',
label: 'Pricing',
},
{
href: 'https://docs.fluxbuilder.com',
position: 'right',
className: 'header-link active',
label: 'Docs',
},
{
href: 'https://fluxbuilder.com/pricing',
position: 'right',
className: 'header-link',
label: 'Profile',
},
{
type: 'search',
position: 'left',
},
],
},
footer: {
style: 'light',
logo: {
alt: 'InspireUI',
src: '/img/logo.png',
href: 'https://www.fluxbuilder.com',
width: 160,
height: 36,
},
copyright: `Copyright © ${new Date().getFullYear()} <a href="https://inspireui.com">InspireUI Ltd.</a>`, // You can also put own HTML here
},
prism: {
theme: lightCodeTheme,
darkTheme: darkCodeTheme,
},
}),
};
module.exports = config;