config.js (dbc691c61ea5d112e7d9e3f393856574ac5d1d37) | config.js (c2f8f34e19ef7b9987538e8c2624e629b5203c17) |
---|---|
1const path = require('path'); 2 3module.exports = { 4 base: "/webui-vue/", 5 title: "OpenBMC Web UI Style Guide", 6 description: 7 "Guidance on code style and development for the OpenBMC browser-based UI", 8 smoothScroll: true, 9 themeConfig: { 10 nav: [ 11 { 12 text: "Guide", 13 link: "/guide/" 14 }, 15 { | 1const path = require('path'); 2 3module.exports = { 4 base: "/webui-vue/", 5 title: "OpenBMC Web UI Style Guide", 6 description: 7 "Guidance on code style and development for the OpenBMC browser-based UI", 8 smoothScroll: true, 9 themeConfig: { 10 nav: [ 11 { 12 text: "Guide", 13 link: "/guide/" 14 }, 15 { |
16 text: "Themes", 17 link: "/themes/" | 16 text: "Customization", 17 link: "/customization/" |
18 }, 19 { 20 text: "Github", 21 link: "https://github.com/openbmc/webui-vue" 22 } 23 ], 24 sidebarDepth: 1, 25 sidebar: { --- 35 unchanged lines hidden (view full) --- 61 title: "Quick Start", 62 children: [ 63 "/guide/quickstart/forms", 64 "/guide/quickstart/page-anatomy", 65 "/guide/quickstart/store-anatomy" 66 ] 67 } 68 ], | 18 }, 19 { 20 text: "Github", 21 link: "https://github.com/openbmc/webui-vue" 22 } 23 ], 24 sidebarDepth: 1, 25 sidebar: { --- 35 unchanged lines hidden (view full) --- 61 title: "Quick Start", 62 children: [ 63 "/guide/quickstart/forms", 64 "/guide/quickstart/page-anatomy", 65 "/guide/quickstart/store-anatomy" 66 ] 67 } 68 ], |
69 "/themes/": ["", "customize", "env"] | 69 "/customization/": ["", "theme", "build"] |
70 }, 71 } 72 }; | 70 }, 71 } 72 }; |