File tree 2 files changed +3
-3
lines changed
packages/starlight-theme-mtasa 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
// @ts -check
2
2
import { defineConfig } from 'astro/config' ;
3
3
import starlight from '@astrojs/starlight' ;
4
- import mtasaStartlightThemePlugin from 'starlight-theme-mtasa'
4
+ import mtasaStarlightThemePlugin from 'starlight-theme-mtasa'
5
5
6
6
const isDeploy = process . env . GITHUB_ACTIONS === 'true' ;
7
7
const ownerName = isDeploy ? process . env . GITHUB_REPOSITORY_NAME : undefined ;
@@ -14,7 +14,7 @@ export default defineConfig({
14
14
integrations : [
15
15
starlight ( {
16
16
title : 'Multi Theft Auto: Theme' ,
17
- plugins : [ mtasaStartlightThemePlugin ( ) ] ,
17
+ plugins : [ mtasaStarlightThemePlugin ( ) ] ,
18
18
social : {
19
19
github : 'https://github.com/multitheftauto/starlight-theme-mtasa' ,
20
20
} ,
Original file line number Diff line number Diff line change 1
1
import type { StarlightPlugin } from '@astrojs/starlight/types' ;
2
2
3
- export default function mtasaStartlightThemePlugin ( ) : StarlightPlugin {
3
+ export default function mtasaStarlightThemePlugin ( ) : StarlightPlugin {
4
4
return {
5
5
name : 'starlight-theme-mtasa' ,
6
6
hooks : {
You can’t perform that action at this time.
0 commit comments