This repository was archived by the owner on Jul 11, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +5
-9
lines changed Expand file tree Collapse file tree 2 files changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ import footnote from "markdown-it-footnote";
5
5
6
6
// https://vitepress.dev/reference/site-config
7
7
export default defineConfig ( {
8
- base : '/ReefGuideAPI.jl/ ' , // TODO: replace this in makedocs!
9
- title : 'ReefGuideAPI.jl ' ,
8
+ base : 'REPLACE_ME_DOCUMENTER_VITEPRESS ' , // TODO: replace this in makedocs!
9
+ title : 'REPLACE_ME_DOCUMENTER_VITEPRESS ' ,
10
10
description : 'An API for Reef Guidance' ,
11
11
lastUpdated : true ,
12
12
cleanUrls : true ,
@@ -40,12 +40,10 @@ export default defineConfig({
40
40
{ text : 'Getting Started' , link : '/getting_started' } ,
41
41
{ text : 'Docker' , link : '/docker' } ,
42
42
{ text : 'API' , link : '/api' }
43
- ]
44
- ,
43
+ ] ,
45
44
sidebar : [
46
45
47
- ]
48
- ,
46
+ ] ,
49
47
editLink : { pattern : "https://github.com/open-AIMS/ReefGuideAPI.jl/edit/main/docs/src/:path" } ,
50
48
socialLinks : [
51
49
{ icon : 'github' , link : 'https://github.com/open-AIMS/ReefGuideAPI.jl' }
Original file line number Diff line number Diff line change 2
2
import { h } from 'vue'
3
3
import type { Theme } from 'vitepress'
4
4
import DefaultTheme from 'vitepress/theme'
5
- // import AsideTrustees from '../../components/AsideTrustees.vue'
6
5
7
6
import { enhanceAppWithTabs } from 'vitepress-plugin-tabs/client'
8
7
import './style.css'
@@ -11,8 +10,7 @@ export default {
11
10
extends : DefaultTheme ,
12
11
Layout ( ) {
13
12
return h ( DefaultTheme . Layout , null , {
14
- // 'home-hero-info-after': () => h(HomeTrustees),
15
- // 'aside-ads-before': () => h(AsideTrustees),
13
+ // https://vitepress.dev/guide/extending-default-theme#layout-slots
16
14
} )
17
15
} ,
18
16
enhanceApp ( { app, router, siteData } ) {
You can’t perform that action at this time.
0 commit comments