-
Notifications
You must be signed in to change notification settings - Fork 3
/
docusaurus.config.js
65 lines (64 loc) · 1.86 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
const siteConfig = {
title: "EOSIO Pro Testnet Blockchain - LACChain BID Labs", // Title for your website.
tagline: "Documentación Técnica LACChain EOSIO",
url: "https://eosio.lacchain.net", // Your website URL
baseUrl: "/", // Base URL for your project */
projectName: "eosio.lacchain.net",
organizationName: "LACChain EOSIO",
favicon: "img/favicon.ico",
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
// Docs folder path relative to website dir.
path: './docs',
editUrl: 'https://github.com/lacchain/eosio.lacchain.net/tree/master',
// Equivalent to `docsUrl`.
routeBasePath: 'docs/',
// Sidebars file relative to website dir.
sidebarPath: require.resolve('./sidebars.js'),
showLastUpdateAuthor: false,
showLastUpdateTime: true
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
},
],
],
themeConfig: {
colorMode: {
disableSwitch: true
},
//Algolia integration
algolia: {
appId: 'PA7N6QXRJW',
apiKey: '27bb66b90ff32b38222a70e8316484aa',
indexName: 'lacchain_eosio',
placeholder: 'Buscar',
algoliaOptions: {}
},
//Google Analytics
googleAnalytics: {
trackingID: "UA-173987-71",
}
},
scripts: [
{
src:
'https://buttons.github.io/buttons.js',
async: true,
},
'https://code.jquery.com/jquery-3.4.1.min.js',
'https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js',
'https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js',
'https://kit.fontawesome.com/6c84ac616f.js',
'https://cdnjs.cloudflare.com/ajax/libs/tiny-slider/2.9.2/min/tiny-slider.js',
],
i18n: {
defaultLocale: 'es',
locales: ['es', 'en']
}
};
module.exports = siteConfig