|
1 | | -import { defineUserConfig } from 'vuepress/cli' |
2 | | -import { viteBundler } from '@vuepress/bundler-vite' |
3 | | -import { hopeTheme } from "vuepress-theme-hope"; |
| 1 | +import {defineUserConfig} from 'vuepress/cli' |
| 2 | +import {viteBundler} from '@vuepress/bundler-vite' |
| 3 | +import {hopeTheme} from "vuepress-theme-hope"; |
4 | 4 |
|
5 | 5 | export default defineUserConfig({ |
6 | | - lang: 'en-US', |
| 6 | + lang: 'en-US', |
7 | 7 |
|
8 | 8 | title: 'ReplayBG', |
9 | 9 | base: '/py_replay_bg/', |
10 | 10 | description: 'A digital twin based framework for the development and assessment of new algorithms for type 1 ' + |
11 | 11 | 'diabetes management', |
12 | 12 |
|
13 | | - theme: hopeTheme({ |
14 | | - logo: 'https://i.postimg.cc/gJn8Sy0X/replay-bg-logo.png', |
15 | | - navbar: ['/', '/documentation/get_started', '/documentation/'], |
16 | | - repo: 'https://github.com/gcappon/py_replay_bg', |
17 | | - docsDir: 'docs/', |
18 | | - docsBranch: 'master', |
19 | | - markdown: { |
20 | | - highlighter: { |
21 | | - type: "shiki", |
22 | | - langs: ['python', 'json', 'md', 'bash', 'diff'], |
23 | | - themes: { |
24 | | - dark: 'catppuccin-mocha', |
25 | | - light: 'catppuccin-latte' |
26 | | - } |
27 | | - }, |
28 | | - math: { |
29 | | - type: "mathjax", |
30 | | - }, |
31 | | - }, |
32 | | - sidebar: [ |
33 | | - { |
34 | | - text: 'Get Started', |
35 | | - link: 'documentation/get_started.md' |
36 | | - }, |
37 | | - { |
38 | | - text: 'Data Requirements', |
39 | | - link: 'documentation/data_requirements.md' |
40 | | - }, |
41 | | - { |
42 | | - text: 'The ReplayBG Object', |
43 | | - link: 'documentation/replaybg_object.md' |
44 | | - }, |
45 | | - { |
46 | | - text: 'Choosing Blueprint', |
47 | | - link: 'documentation/choosing_blueprint.md' |
48 | | - }, |
49 | | - { |
50 | | - text: 'Twinning Procedure', |
51 | | - link: 'documentation/twinning_procedure.md' |
52 | | - }, |
53 | | - { |
54 | | - text: 'Replaying', |
55 | | - link: 'documentation/replaying.md' |
56 | | - }, |
57 | | - { |
58 | | - text: 'The _results/_ Folder', |
59 | | - link: 'documentation/results_folder.md' |
60 | | - }, |
61 | | - { |
62 | | - text: 'Visualizing Replay Results', |
63 | | - link: 'documentation/visualizing_replay_results.md' |
64 | | - }, |
65 | | - { |
66 | | - text: 'Analyzing Replay Results', |
67 | | - link: 'documentation/analyzing_replay_results.md' |
68 | | - } |
69 | | - ], |
70 | | - }), |
| 13 | + theme: hopeTheme({ |
| 14 | + logo: 'https://i.postimg.cc/gJn8Sy0X/replay-bg-logo.png', |
| 15 | + navbar: ['/', '/documentation/get_started', '/documentation/'], |
| 16 | + repo: 'https://github.com/gcappon/py_replay_bg', |
| 17 | + docsDir: 'docs/', |
| 18 | + docsBranch: 'master', |
| 19 | + markdown: { |
| 20 | + highlighter: { |
| 21 | + type: "shiki", |
| 22 | + langs: ['python', 'json', 'md', 'bash', 'diff'], |
| 23 | + themes: { |
| 24 | + dark: 'catppuccin-mocha', |
| 25 | + light: 'catppuccin-latte' |
| 26 | + } |
| 27 | + }, |
| 28 | + math: { |
| 29 | + type: "mathjax", |
| 30 | + }, |
| 31 | + }, |
| 32 | + sidebar: [ |
| 33 | + { |
| 34 | + text: 'Get Started', |
| 35 | + link: 'documentation/get_started.md' |
| 36 | + }, |
| 37 | + { |
| 38 | + text: 'Data Requirements', |
| 39 | + link: 'documentation/data_requirements.md' |
| 40 | + }, |
| 41 | + { |
| 42 | + text: 'The ReplayBG Object', |
| 43 | + link: 'documentation/replaybg_object.md' |
| 44 | + }, |
| 45 | + { |
| 46 | + text: 'Choosing Blueprint', |
| 47 | + link: 'documentation/choosing_blueprint.md' |
| 48 | + }, |
| 49 | + { |
| 50 | + text: 'The CGM error model', |
| 51 | + link: 'documentation/cgm_model.md' |
| 52 | + }, |
| 53 | + { |
| 54 | + text: 'Twinning Procedure', |
| 55 | + link: 'documentation/twinning_procedure.md' |
| 56 | + }, |
| 57 | + { |
| 58 | + text: 'Replaying', |
| 59 | + link: 'documentation/replaying.md' |
| 60 | + }, |
| 61 | + { |
| 62 | + text: 'The _results/_ Folder', |
| 63 | + link: 'documentation/results_folder.md' |
| 64 | + }, |
| 65 | + { |
| 66 | + text: 'Visualizing Replay Results', |
| 67 | + link: 'documentation/visualizing_replay_results.md' |
| 68 | + }, |
| 69 | + { |
| 70 | + text: 'Analyzing Replay Results', |
| 71 | + link: 'documentation/analyzing_replay_results.md' |
| 72 | + } |
| 73 | + ], |
| 74 | + }), |
71 | 75 |
|
72 | | - bundler: viteBundler(), |
| 76 | + bundler: viteBundler(), |
73 | 77 |
|
74 | | - plugins: [], |
| 78 | + plugins: [], |
75 | 79 | }) |
0 commit comments