-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathmkdocs.yml
92 lines (84 loc) · 3 KB
/
mkdocs.yml
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
site_name: Isomorphic Layout Composer
site_author: Namecheap, Inc
theme:
name: material
favicon: brand/vector/isolated-monochrome-black.svg
logo: brand/vector/isolated-monochrome-white.svg
icon:
repo: fontawesome/brands/github
palette:
primary: indigo
accent: deep purple
features:
- navigation.sections
- navigation.tabs
- navigation.top
repo_url: https://github.com/namecheap/ilc
repo_name: namecheap/ilc
nav:
- Home:
- Home: index.md
- Contributing: CONTRIBUTING.md
- Demo website: http://ilc-demo.namecheap.technology
- Documentation:
- Overview: docs/overview.md
- Fundamentals:
- Micro-frontend Types: docs/microfrontend-types.md
- ILC to App interface: docs/ilc_app_interface.md
- ILC Registry: docs/registry.md
- Global API: docs/global_api.md
- Working with ILC:
- Animation during reroute: docs/animation_during_reroute.md
- Global error handling: docs/global_error_handling.md
- Internationalization: docs/i18n.md
- Develop in Production: docs/develop_in_production.md
- Compatibility with legacy UMD bundles: docs/umd_bundles_compatibility.md
- ILC transition hooks: docs/transition_hooks.md
- Multi-domains: docs/multi-domains.md
- How-to Guides:
- React app + ILC:
- Lesson 1: docs/how-to-guides/react/lesson1.md
- Lesson 2: docs/how-to-guides/react/lesson2.md
- Lesson 3: docs/how-to-guides/react/lesson3.md
- Lesson 4: docs/how-to-guides/react/lesson4.md
- Routing:
- Introduction: docs/routing/introduction.md
- Route configuration: docs/routing/route_configuration.md
- Route matching patterns: docs/routing/route_matching_patterns.md
- Route transition and animation: docs/routing/route_transition_and_animation.md
- i18n & trailing slash: docs/routing/localization_and_trailing_slash.md
- Special routes: docs/routing/special_routes.md
- Advanced features:
- Parcels: docs/parcels.md
- Plugins: https://github.com/namecheap/ilc-plugins-sdk
- App Wrappers: docs/app_wrappers.md
- External resources:
- Demo applications used in quick start: https://github.com/namecheap/ilc-demo-apps
- SDK for ILC plugins development: https://github.com/namecheap/ilc-plugins-sdk
- Public Path Problem: https://namecheap.github.io/ilc-sdk/pages/Pages/public_path.html
- Legal:
- Notice: NOTICE.md
- License: LICENSE.md
markdown_extensions:
- admonition
- attr_list
- toc:
permalink: ⚓︎
- pymdownx.details
- pymdownx.magiclink
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
plugins:
- search
- macros
extra:
repo:
full_url: https://github.com/namecheap/ilc/blob/master
extra_css:
- docs/assets/styles/styles.css
docs_dir: '.mkdocs'
site_dir: 'mkdocs_dist'