mirror of
https://github.com/Ukendio/jecs.git
synced 2025-04-24 17:10:03 +00:00
* init bug / feat templates * capital J for style * PR templates * Combine templates because github be like that * Out with the old * package and package lock files * Deploy docs workflow * Absolutely massive commit (docs) * Delete cache and add to gitignore * Goodbye cache
57 lines
1.5 KiB
TypeScript
57 lines
1.5 KiB
TypeScript
import { defineConfig } from 'vitepress'
|
|
|
|
// https://vitepress.dev/reference/site-config
|
|
export default defineConfig({
|
|
title: "Jecs",
|
|
base: "/Jecs/",
|
|
description: "A VitePress Site",
|
|
themeConfig: {
|
|
// https://vitepress.dev/reference/default-theme-config
|
|
nav: [
|
|
{ text: 'Home', link: '/' },
|
|
{ text: 'Examples', link: '/markdown-examples' }
|
|
],
|
|
|
|
sidebar: [
|
|
{
|
|
text: 'Overview',
|
|
items: [
|
|
{ text: 'Getting Started', link: '/overview/get-started' },
|
|
{ text: 'First Jecs Project', link: '/overview/first-jecs-project' }
|
|
]
|
|
},
|
|
{
|
|
text: 'Concepts',
|
|
items: [
|
|
{ text: 'Entities', link: '/concepts/entities' },
|
|
{ text: 'Static Components', link: '/concepts/static-components' },
|
|
{ text: 'Queries', link: '/concepts/queries' },
|
|
]
|
|
},
|
|
{
|
|
text: 'References',
|
|
items: [
|
|
{ text: 'API Reference', link: '/api' },
|
|
]
|
|
},
|
|
{
|
|
text: "FAQ",
|
|
items: [
|
|
{ text: 'How can I contribute?', link: '/faq/contributing' }
|
|
]
|
|
},
|
|
{
|
|
text: 'Contributing',
|
|
items: [
|
|
{ text: 'Contribution Guidelines', link: '/contributing/guidelines'},
|
|
{ text: 'Submitting Issues', link: '/contributing/issues'},
|
|
{ text: 'Submitting Pull Requests', link: '/contributing/pull-requests'},
|
|
]
|
|
}
|
|
],
|
|
|
|
socialLinks: [
|
|
{ icon: 'github', link: 'https://github.com/vuejs/vitepress' }
|
|
]
|
|
}
|
|
})
|