blob: 9043606744315a60d684af5daa9b53114f77868c [file] [log] [blame]
Derick Montaguecaaf7ba2020-10-09 11:17:48 -05001const path = require('path');
2
Derick Montague365bce52020-01-03 08:36:20 -06003module.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",
Derick Montague7fc4cd72020-02-07 12:06:41 -060013 link: "/guide/"
Derick Montague365bce52020-01-03 08:36:20 -060014 },
15 {
16 text: "Themes",
17 link: "/themes/"
18 },
19 {
20 text: "Github",
21 link: "https://github.com/openbmc/webui-vue"
22 }
23 ],
24 sidebarDepth: 1,
25 sidebar: {
26 "/guide/": [
Derick Montague7fc4cd72020-02-07 12:06:41 -060027 "",
Derick Montague365bce52020-01-03 08:36:20 -060028 {
29 title: "Coding Standards",
30 children: [
31 "/guide/coding-standards/",
32 ["/guide/coding-standards/accessibility", "Accessibility"],
33 ["/guide/coding-standards/sass", "SASS"],
34 ["/guide/coding-standards/javascript", "JavaScript"]
35 ]
36 },
37 {
38 title: "Guidelines",
39 children: [
40 "/guide/guidelines/",
41 "/guide/guidelines/colors",
Derick Montague221b3182020-04-14 16:10:24 -050042 "/guide/guidelines/motion",
Derick Montague365bce52020-01-03 08:36:20 -060043 "/guide/guidelines/typography"
44 ]
45 },
46 {
47 title: "Components",
Derick Montague3f6710a2020-03-04 00:59:47 -060048 children: [
49 "/guide/components/",
Derick Montaguefd22b5b2020-03-13 15:15:43 -050050 "/guide/components/alert",
Derick Montague3f6710a2020-03-04 00:59:47 -060051 "/guide/components/button",
Derick Montague4e90eed2020-03-03 18:11:44 -060052 "/guide/components/toast",
Derick Montague3f6710a2020-03-04 00:59:47 -060053 ]
Derick Montague365bce52020-01-03 08:36:20 -060054 }
Derick Montague7fc4cd72020-02-07 12:06:41 -060055 ],
Derick Montague35b2bbf2020-10-09 11:50:42 -050056 "/themes/": ["", "customize", "env"]
Derick Montague365bce52020-01-03 08:36:20 -060057 },
Derick Montaguecaaf7ba2020-10-09 11:17:48 -050058 },
59 configureWebpack: {
60 resolve: {
61 alias: {
62 '@': path.resolve(__dirname, '../../src')
63 }
64 }
Derick Montague365bce52020-01-03 08:36:20 -060065 }
66 };