-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhugo.toml
More file actions
102 lines (85 loc) · 2.23 KB
/
hugo.toml
File metadata and controls
102 lines (85 loc) · 2.23 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
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
baseURL = "https://docs.fireact.dev/"
title = "fireact.dev Documentation"
theme = ["docsy"]
enableGitInfo = true
# Language settings
contentDir = "content"
defaultContentLanguage = "en"
defaultContentLanguageInSubdir = false
enableMissingTranslationPlaceholders = true
# Enable Google Analytics by entering your tracking code
googleAnalytics = "G-E6S4MWBHE1"
# Image processing configuration
[imaging]
resampleFilter = "CatmullRom"
quality = 75
anchor = "smart"
[markup]
[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true
[markup.highlight]
style = "tango"
# Site Parameters
[params]
copyright = "fireact.dev"
privacy_policy = "https://policies.google.com/privacy"
# Repository configuration
github_repo = "https://github.com/fireact-dev/main"
github_branch = "main"
# Enable Lunr.js offline search
offlineSearch = true
# User interface configuration
[params.ui]
sidebar_menu_compact = true
breadcrumb_disable = false
sidebar_search_disable = false
footer_about_enable = true
navbar_logo = true
navbar_logo_link = "https://fireact.dev"
# Favicons
[params.ui.favicon]
icon = "img/favicon.ico"
icon32 = "img/favicon.png"
apple_touch = "img/apple-touch-icon.png"
# Feedback configuration
[params.ui.feedback]
enable = true
yes = 'Glad to hear it! Please <a href="https://github.com/fireact-dev/docs/issues/new">tell us how we can improve</a>.'
no = 'Sorry to hear that. Please <a href="https://github.com/fireact-dev/docs/issues/new">tell us how we can improve</a>.'
# Language configuration
[languages]
[languages.en]
title = "fireact.dev"
languageName ="English"
weight = 1
[languages.en.params]
description = "Documentation for Fireact"
# Module configuration
[module]
proxy = "direct"
[[module.imports]]
path = "github.com/google/docsy"
[[module.imports]]
path = "github.com/google/docsy/dependencies"
# Top Navigation Menu
[[menu.main]]
name = "Demos"
url = "https://fireact.dev/demos/"
weight = 20
identifier = "demos"
[[menu.main]]
name = "Blog"
url = "https://fireact.dev/blog/"
weight = 40
identifier = "blog"
[[menu.main]]
name = "Roadmap"
url = "https://github.com/orgs/fireact-dev/projects/1"
weight = 50
identifier = "roadmap"
[[menu.main]]
name = "Github"
url = "https://github.com/fireact-dev/main"
weight = 60
identifier = "github"