Skip to content

Commit 1f1c2d6

Browse files
Update
1 parent f62a207 commit 1f1c2d6

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.github/workflows/publish.yml

-5
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,6 @@ jobs:
2424
- name: Setup Node.js ⚙️ - Cache dependencies ⚡ - Install dependencies 🔧
2525
uses: ./.github/workflows/setup-node
2626

27-
- name: Setup Pages ⚙️
28-
uses: actions/configure-pages@v4
29-
with:
30-
static_site_generator: next
31-
3227
- name: Build with Next.js 🏗️
3328
run: npm run build && ls -la
3429

next.config.ts

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ import type { NextConfig } from "next";
33
const nextConfig: NextConfig = {
44
output: "export",
55
reactStrictMode: true,
6+
images: {
7+
unoptimized: true,
8+
},
9+
basePath: "/",
610
};
711

812
export default nextConfig;

0 commit comments

Comments
 (0)