Skip to content

Commit 119381b

Browse files
committed
fixed rendering
1 parent e53c1c9 commit 119381b

File tree

4 files changed

+3
-1
lines changed

4 files changed

+3
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ jobs:
2929
run: npm ci
3030
- name: Build
3131
run: npm run build
32+
env:
33+
NEXT_PUBLIC_REPO_NAME: ${{ github.event.repository.name }}
3234
- name: Add .nojekyll
3335
run: touch out/.nojekyll
3436
- name: Upload artifact

next.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { NextConfig } from "next";
22

3-
const repoName = "vibecoding_tutorial";
3+
const repoName = process.env.NEXT_PUBLIC_REPO_NAME || "VibeCoding_Tutorial";
44

55
const nextConfig: NextConfig = {
66
output: "export",

public/data_viz.png

-652 KB
Binary file not shown.

public/ide_interface.png

-844 KB
Binary file not shown.

0 commit comments

Comments
 (0)