Initial dev-1.0 commit for TS and Shadcn migration

This commit is contained in:
LukeGus
2025-07-17 01:13:30 -05:00
commit 00a827df09
82 changed files with 45402 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
import { defineConfig } from 'vitepress'
// https://vitepress.dev/reference/site-config
export default defineConfig({
title: "Termix",
description: "Doccumentation",
lastUpdated: true,
cleanUrls: true,
metaChunk: true,
base: '/',
head: [['link', { rel: 'icon', href: '/favicon.ico' }]],
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
nav: [
{ text: 'Home', link: '/' },
{ text: 'Docs', link: '/docs' }
],
search: {
provider: "local",
},
footer: {
message: "Distributed under the MIT License",
copyright: "© 2025 Luke Gustafson",
},
sidebar: [
{
text: 'Examples',
items: [
{ text: 'Docs', link: '/docs' },
{ text: 'GitHub', link: 'https://github.com/LukeGus/Termix' }
]
}
],
socialLinks: [
{ icon: 'github', link: 'https://github.com/LukeGus/Termix' },
{ icon: "discord", link: "https://discord.gg/jVQGdvHDrf" },
]
}
})