Skip to content

Commit

Permalink
Add VersionPicker component to navigation and update copyright notice…
Browse files Browse the repository at this point in the history
… in config
  • Loading branch information
camilogarciabotero committed Oct 30, 2024
1 parent 0ab6ec5 commit 2bf54d3
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion docs/src/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ import { tabsMarkdownPlugin } from 'vitepress-plugin-tabs'
import mathjax3 from "markdown-it-mathjax3";
import footnote from "markdown-it-footnote";

const nav = [
...navTemp.nav,
{
component: 'VersionPicker'
}
]

// https://vitepress.dev/reference/site-config
export default defineConfig({
base: 'REPLACE_ME_DOCUMENTER_VITEPRESS',// TODO: replace this in makedocs!
Expand Down Expand Up @@ -43,7 +50,7 @@ export default defineConfig({
],
footer: {
message: 'Made with <a href="https://luxdl.github.io/DocumenterVitepress.jl/dev/" target="_blank"><strong>DocumenterVitepress.jl</strong></a><br>',
copyright: `© Copyright ${new Date().getUTCFullYear()}.`
copyright: `© Copyright ${new Date().getUTCFullYear()}. Released under the MIT License.`
}
}
})

0 comments on commit 2bf54d3

Please sign in to comment.