You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This repository contains the [Starlight](https://starlight.astro.build/) theme used by [Multi Theft Auto](https://multitheftauto.com/).
4
+
5
+
## Installation
6
+
7
+
1. Install the package
8
+
```
9
+
npm i @multitheftauto/starlight-theme-mtasa
10
+
```
11
+
12
+
2. Edit your `astro.config.mjs`
13
+
```diff
14
+
import starlight from '@astrojs/starlight'
15
+
import { defineConfig } from 'astro/config'
16
+
import starlightVersions from 'starlight-versions'
17
+
+ import mtasaStarlightThemePlugin from '@multitheftauto/starlight-theme-mtasa';
18
+
19
+
export default defineConfig({
20
+
integrations: [
21
+
starlight({
22
+
title: 'My Docs',
23
+
+ plugins: [mtasaStarlightThemePlugin()],
24
+
}),
25
+
],
26
+
})
27
+
```
28
+
29
+
## License
30
+
31
+
Copyright (c) 2025 Multi Theft Auto team and contributors.
32
+
33
+
Permission is granted to copy, distribute and/or modify these source files under the terms of the [MIT License](LICENSE). A copy of the [license](LICENSE) is included in the root directory of the repository.
0 commit comments