add entrypoints to extensions

This commit is contained in:
lilly 2024-06-10 14:23:04 -05:00
parent d7d8182c74
commit f06f16c6e6
Signed by: MaeMachineBroke
GPG key ID: B54591A4805E9CC8
2 changed files with 23 additions and 8 deletions

View file

@ -38,13 +38,6 @@ export default defineConfig({
{ text: 'AccessWideners', link: '/tutorial/accesswideners' },
]
},
{
text: 'Contributing',
items: [
{ text: 'Guidelines', link: '/contributing/guidelines' },
{ text: 'Tools', link: '/contributing/tools' },
]
},
{
text: 'Specifications',
items: [
@ -52,7 +45,25 @@ export default defineConfig({
{ text: '*.mixins.json', link: '/spec/mixin-config' },
{ text: '*.accesswidener', link: '/spec/aw' },
]
}
},
{
text: 'Extensions',
items: [
{ text: 'Main Entrypoint', link: '/exts/main' },
{ text: 'Client Entrypoint', link: '/exts/client' },
{ text: 'Server Entrypoint', link: '/exts/server' },
{ text: 'Mixin', link: '/exts/mixin' },
{ text: 'AccessWideners', link: '/exts/aw' },
{ text: 'PreLaunch', link: '/exts/prelaunch' },
]
},
{
text: 'Contributing',
items: [
{ text: 'Guidelines', link: '/contributing/guidelines' },
{ text: 'Tools', link: '/contributing/tools' },
]
},
],
socialLinks: [

View file

@ -1 +1,5 @@
<<<<<<< HEAD
# MainInitializer
=======
# MainEntrypoint
>>>>>>> f59db8a (add entrypoints to extensions)