We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6ec710 commit 0fc562dCopy full SHA for 0fc562d
β.github/workflows/deploy.ymlβ
@@ -35,7 +35,9 @@ jobs:
35
uses: actions/configure-pages@v4
36
37
- name: Build with Next.js
38
- run: npm deploy
+ run: |
39
+ npm run build
40
+ touch out/.nojekyll
41
42
- name: Upload artifact
43
uses: actions/upload-pages-artifact@v3
βnext.config.tsβ
@@ -5,6 +5,7 @@ const nextConfig: NextConfig = {
5
images: {
6
unoptimized: true,
7
},
8
+ basePath: '/seminar-visualds.github.io',
9
};
10
11
export default nextConfig;
0 commit comments