Skip to content

Commit 0fc562d

Browse files
committed
fix: πŸ› deploy
1 parent e6ec710 commit 0fc562d

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

β€Ž.github/workflows/deploy.ymlβ€Ž

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ jobs:
3535
uses: actions/configure-pages@v4
3636

3737
- name: Build with Next.js
38-
run: npm deploy
38+
run: |
39+
npm run build
40+
touch out/.nojekyll
3941
4042
- name: Upload artifact
4143
uses: actions/upload-pages-artifact@v3

β€Žnext.config.tsβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ const nextConfig: NextConfig = {
55
images: {
66
unoptimized: true,
77
},
8+
basePath: '/seminar-visualds.github.io',
89
};
910

1011
export default nextConfig;

0 commit comments

Comments
Β (0)