2022-09-30 20:27:55 +08:00

55 lines
1.8 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import footnote from 'markdown-it-footnote'
import { defineConfig } from 'vitepress'
export default {
title: 'meteoroid.fit',
description: 'Just playing around.',
themeConfig: {
logo: '/icon.png',
nav: [
{ text: '全景图', link: 'http://demo.meteoroid.fit/pano/album.html' },
{ text: '文档源码', link: 'https://github.com/quan787/blog_meteoroid_fit' }
],
sidebar: [
{
text: '流星探测理论',
items: [
{ text: '前言', link: 'meteor/motivation' },
{ text: '流星探测原理1', link: 'meteor/concepts' },
{ text: '流星探测原理2', link: 'meteor/concepts2' },
{ text: '世界上的流星监测网', link: 'meteor/networks' },
{ text: '澳大利亚沙漠火流星监测网', link: 'meteor/DFN' }
]
},
{
text: '架设流星探测设备',
items: [
/*{ text: '总体设计', link: 'hardware/overall' }*/
]
},
{
text: 'meteoroid.fit网站',
items: [
/*{ text: '注册', link: 'website/register' }*/
]
},
{
items: [{
text: '京ICP备19031740号-2',
link: 'https://beian.miit.gov.cn/'
}]
}
],
footer: {
message: '<a href="https://beian.miit.gov.cn/">京ICP备19031740号-2</a>',
copyright: 'Copyright © 2022-present quan787'
}
},
markdown: {
config: (md) => {
md.use(footnote)
}
}
}