We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f62a207 commit 1f1c2d6Copy full SHA for 1f1c2d6
.github/workflows/publish.yml
@@ -24,11 +24,6 @@ jobs:
24
- name: Setup Node.js ⚙️ - Cache dependencies ⚡ - Install dependencies 🔧
25
uses: ./.github/workflows/setup-node
26
27
- - name: Setup Pages ⚙️
28
- uses: actions/configure-pages@v4
29
- with:
30
- static_site_generator: next
31
-
32
- name: Build with Next.js 🏗️
33
run: npm run build && ls -la
34
next.config.ts
@@ -3,6 +3,10 @@ import type { NextConfig } from "next";
3
const nextConfig: NextConfig = {
4
output: "export",
5
reactStrictMode: true,
6
+ images: {
7
+ unoptimized: true,
8
+ },
9
+ basePath: "/",
10
};
11
12
export default nextConfig;
0 commit comments