Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import remarkToc from "remark-toc";
// https://astro.build/config
export default defineConfig({
redirects: {
"/": "/main",
"/ALab": "ALab/main",
},
markdown: {
remarkPlugins: [[remarkToc, { heading: "toc" }]],
Expand Down
1 change: 1 addition & 0 deletions docs/src/layouts/BaseLayout.astro
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<html lang="en">
<head>
<base href={import.meta.env.BASE_URL} />
<meta charset="utf-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width" />
Expand Down
2 changes: 1 addition & 1 deletion docs/src/pages/index.astro
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
---
return Astro.redirect('/main');
return Astro.redirect("ALab/main");
---
6 changes: 3 additions & 3 deletions docs/src/pages/main.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ For quick preview and inspection, [`USDView`](https://graphics.pixar.com/usd/doc

# Documentation

- [Documentation](documentation) - File structure layout and asset documentation.
- [AL-specific content](alSpecific) - Animal Logic specific concepts, which we love, but had to remove from ALab to ensure ease of use and compatibility.
- [Changelog](changelog) - List of all the updates from the latest versions of ALab.
- [Documentation](./documentation) - File structure layout and asset documentation.
- [AL-specific content](./alSpecific) - Animal Logic specific concepts, which we love, but had to remove from ALab to ensure ease of use and compatibility.
- [Changelog](./changelog) - List of all the updates from the latest versions of ALab.

# About ALab

Expand Down