Skip to content

Commit

Permalink
[ci] format
Browse files Browse the repository at this point in the history
  • Loading branch information
HiDeoo authored and astrobot-houston committed Oct 10, 2024
1 parent 7d2bd93 commit dacbb55
Showing 1 changed file with 9 additions and 21 deletions.
30 changes: 9 additions & 21 deletions docs/src/content/docs/uk/manual-setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,9 @@ import { Tabs, TabItem } from '@astrojs/starlight/components';
Starlight є [інтеґрацією Astro](https://docs.astro.build/en/guides/integrations-guide/). Додайте її до свого сайту, виконавши команду `astro add` у кореневій директорії вашого проєкту:

<Tabs syncKey="pkg">
<TabItem label="npm">
```sh
npx astro add starlight
```
</TabItem>
<TabItem label="pnpm">
```sh
pnpm astro add starlight
```
</TabItem>
<TabItem label="Yarn">
```sh
yarn astro add starlight
```
</TabItem>
<TabItem label="npm">```sh npx astro add starlight ```</TabItem>
<TabItem label="pnpm">```sh pnpm astro add starlight ```</TabItem>
<TabItem label="Yarn">```sh yarn astro add starlight ```</TabItem>
</Tabs>

Це встановить необхідні залежності та додасть Starlight до масиву integrations у вашому конфіґураційному файлі Astro.
Expand All @@ -48,11 +36,11 @@ import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';

export default defineConfig({
integrations: [
starlight({
title: 'Мій чудовий сайт документації',
}),
],
integrations: [
starlight({
title: 'Мій чудовий сайт документації',
}),
],
});
```

Expand All @@ -70,7 +58,7 @@ import { defineCollection } from 'astro:content';
import { docsSchema } from '@astrojs/starlight/schema';

export const collections = {
docs: defineCollection({ schema: docsSchema() }),
docs: defineCollection({ schema: docsSchema() }),
};
```

Expand Down

0 comments on commit dacbb55

Please sign in to comment.