Skip to content
This repository was archived by the owner on Mar 2, 2026. It is now read-only.

Commit ae71db2

Browse files
authored
Replace VitePress docs with Next.js redirect app for domain migration (#17)
1 parent 141ce41 commit ae71db2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+1046
-10197
lines changed

.github/workflows/ci.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v4
15-
- uses: pnpm/action-setup@v3
16-
with:
17-
version: 9
1815
- name: Install Vercel CLI
1916
run: npm install --global vercel@canary
2017
- name: Pull Vercel Environment Information

.vitepress/config.mjs

Lines changed: 0 additions & 251 deletions
This file was deleted.

app/layout.tsx

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
export default function RootLayout({
2+
children,
3+
}: {
4+
children: React.ReactNode;
5+
}) {
6+
return (
7+
<html>
8+
<body>{children}</body>
9+
</html>
10+
);
11+
}

app/page.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export default function Page() {
2+
return null;
3+
}

build.sh

Lines changed: 0 additions & 12 deletions
This file was deleted.

docs/dev-api.md

Lines changed: 0 additions & 61 deletions
This file was deleted.

0 commit comments

Comments
 (0)