Skip to content

Commit

Permalink
Merge pull request #7 from asxrow66/main
Browse files Browse the repository at this point in the history
So much.. (check commits)
  • Loading branch information
jeremybosma authored Jun 19, 2024
2 parents c973beb + a84aec7 commit 738b6f1
Show file tree
Hide file tree
Showing 15 changed files with 215 additions and 67 deletions.
97 changes: 64 additions & 33 deletions astro.config.mjs
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
import sentry from "@sentry/astro";
import spotlightjs from "@spotlightjs/astro";
import tailwind from '@astrojs/tailwind';

import tailwind from "@astrojs/tailwind";

// https://astro.build/config
export default defineConfig({
site: 'https://docs.getmythic.app/guides/installation',
integrations: [starlight({
Expand All @@ -15,32 +11,67 @@ export default defineConfig({
discord: 'https://discord.gg/GwHgX3QWK3',
'x.com': 'https://x.com/mythicapp'
},
sidebar: [{
label: 'Getting Started',
items: [
// Each item here is one entry in the navigation menu.
sidebar: [
{
label: 'Getting Started',
items: [
{
label: 'Installation',
link: '/guides/installation/'
},
{
label: 'Setup',
link: '/guides/setup'
},
{
label: 'Navigating the Mythic UI',
link: '/guides/nav'
},
{
label: 'Installing Games',
link: '/guides/gameinstall'
},
{
label: 'Importing Games',
link: '/guides/gameimport'
}
]
},
{
label: 'Advanced Features',
items: [
{
label: 'Creating a bottle',
link: '/advoptions/bottlecreate/'
}
]
},
{
label: 'Troubleshooting Issues',
items: [
{
label: 'Internet Issues',
link: '/troubleshoot/internet'
},
{
label: 'Uninstalling and Reinstalling',
link: '/troubleshoot/uninstall'
}
]
},
{
label: 'Installation',
link: '/guides/installation/'
}, {
label: 'Setup',
link: '/guides/setup'
}, {
label: 'Navigating the Mythic UI',
link: '/guides/nav'
}, {
label: 'Installing Games',
link: '/guides/gameinstall'
}, {
label: 'Importing Games',
link: '/guides/gameimport'
}]
}, {
label: 'Advanced Options',
items: [{
label: 'Creating a bottle',
link: '/advoptions/bottlecreate/'
}]
}]
}), sentry(), spotlightjs(), tailwind()]
});
label: 'Other Tutorials',
items: [
{
label: 'Installing Game Launchers',
link: '/othertut/launchers'
},
{
label: 'Microsoft Runtime Missing',
link: '/othertut/msruntime'
}
]
}
]
}), tailwind()]
});
Loading

0 comments on commit 738b6f1

Please sign in to comment.