Added a bunch of boilerplate and started working on the flash documentation
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
import { defineConfig } from 'vitepress'
|
||||
|
||||
export default defineConfig({
|
||||
base: "/flash/",
|
||||
title: "pixeldocs",
|
||||
description: "Documentation for the PixelServices projects",
|
||||
cleanUrls: true,
|
||||
outDir: '../dist/flash',
|
||||
themeConfig: {
|
||||
sidebar: {
|
||||
'/guide/': [
|
||||
{
|
||||
text: 'Guide',
|
||||
items: [
|
||||
{ text: 'Introduction', link: '/guide/' },
|
||||
{ text: 'Getting Started', link: '/guide/getting-started' }
|
||||
]
|
||||
}
|
||||
],
|
||||
'/': [
|
||||
{
|
||||
text: 'General',
|
||||
items: [
|
||||
{ text: 'Home', link: '/' },
|
||||
{ text: 'Markdown Examples', link: '/markdown-examples' },
|
||||
{ text: 'API Examples', link: '/api-examples' }
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user