-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Gregory <tajemniktv@outlook.com>
- Loading branch information
1 parent
476a572
commit 243ac89
Showing
30 changed files
with
1,228 additions
and
556 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
[StageSettings] | ||
+AdditionalNonUSFDirectories=Resources | ||
+AdditionalNonUSFDirectories=Config | ||
+AdditionalNonUSFDirectories=ContentLib | ||
+AdditionalNonUSFDirectories=ContentLib | ||
+AdditionalNonUSFDirectories = Plugins |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+5.54 KB
Content/Config/BP_TajsGraph_ConfigStruct_LumenSection_AsyncLumenSection.uasset
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
{ | ||
"recommendations": [ | ||
"astro-build.astro-vscode", | ||
"stripe.markdoc-language-support" | ||
"astro-build.astro-vscode" | ||
], | ||
"unwantedRecommendations": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,30 @@ | ||
import {defineConfig} from 'astro/config'; | ||
import starlight from '@astrojs/starlight'; | ||
import markdoc from '@astrojs/markdoc'; | ||
import tailwind from '@astrojs/tailwind'; | ||
|
||
// https://astro.build/config | ||
export default defineConfig({ | ||
integrations: [ | ||
markdoc(), | ||
starlight({ | ||
title: 'My Docs', | ||
social: { | ||
github: 'https://github.com/withastro/starlight', | ||
}, | ||
sidebar: [ | ||
{ | ||
label: 'Guides', | ||
items: [ | ||
// Each item here is one entry in the navigation menu. | ||
{label: 'Example Guide', slug: 'guides/example'}, | ||
], | ||
}, | ||
{ | ||
label: 'Reference', | ||
autogenerate: {directory: 'reference'}, | ||
}, | ||
], | ||
}), | ||
], | ||
integrations: [ | ||
starlight({ | ||
title: 'Docs with Tailwind', | ||
social: { | ||
github: 'https://github.com/withastro/starlight', | ||
}, | ||
sidebar: [ | ||
{ | ||
label: 'Guides', | ||
items: [ | ||
// Each item here is one entry in the navigation menu. | ||
{label: 'Example Guide', slug: 'guides/example'}, | ||
], | ||
}, | ||
{ | ||
label: 'Reference', | ||
autogenerate: {directory: 'reference'}, | ||
}, | ||
], | ||
customCss: ['./src/tailwind.css'], | ||
}), | ||
tailwind({applyBaseStyles: false}), | ||
], | ||
}); |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.