Skip to content

Commit 6f63635

Browse files
committed
Initial commit
0 parents  commit 6f63635

31 files changed

+13732
-0
lines changed

.gitignore

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# build output
2+
dist/
3+
4+
# generated types
5+
.astro/
6+
7+
# dependencies
8+
node_modules/
9+
10+
# logs
11+
npm-debug.log*
12+
yarn-debug.log*
13+
yarn-error.log*
14+
pnpm-debug.log*
15+
16+
17+
# environment variables
18+
.env
19+
.env.production
20+
21+
# macOS-specific files
22+
.DS_Store

.vscode/extensions.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"recommendations": ["astro-build.astro-vscode"],
3+
"unwantedRecommendations": []
4+
}

.vscode/launch.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"command": "./node_modules/.bin/astro dev --root docs",
6+
"name": "Development server",
7+
"request": "launch",
8+
"type": "node-terminal"
9+
}
10+
]
11+
}

docs/astro.config.mjs

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
// @ts-check
2+
import { defineConfig } from 'astro/config';
3+
import starlight from '@astrojs/starlight';
4+
import mtasaStartlightThemePlugin from 'starlight-theme-mtasa'
5+
6+
// https://astro.build/config
7+
export default defineConfig({
8+
integrations: [
9+
starlight({
10+
title: 'Multi Theft Auto',
11+
plugins: [mtasaStartlightThemePlugin()],
12+
social: {
13+
github: 'https://github.com/withastro/starlight',
14+
},
15+
sidebar: [
16+
{
17+
label: 'Guides',
18+
items: [
19+
// Each item here is one entry in the navigation menu.
20+
{ label: 'Example Guide', slug: 'guides/example' },
21+
],
22+
},
23+
{
24+
label: 'Reference',
25+
autogenerate: { directory: 'reference' },
26+
},
27+
],
28+
}),
29+
],
30+
});

0 commit comments

Comments
 (0)