Skip to content

Commit 61328a1

Browse files
committed
fix
1 parent 7424e32 commit 61328a1

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

.github/workflows/nextjs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ jobs:
5555
cache: ${{ steps.detect-package-manager.outputs.manager }}
5656
- name: Setup Pages
5757
uses: actions/configure-pages@v5
58-
with:
59-
static_site_generator: next
58+
# with:
59+
# static_site_generator: next
6060
- name: Restore cache
6161
uses: actions/cache@v4
6262
with:

next.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const withMDX = createMDX();
55
/** @type {import('next').NextConfig} */
66
const config = {
77
reactStrictMode: true,
8-
// output: 'export',
8+
output: 'export',
99
};
1010

1111
export default withMDX(config);

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
"build": "next build",
77
"dev": "next dev --turbo",
88
"start": "next start",
9-
"postinstall": "fumadocs-mdx",
10-
"export": "next build && next export"
9+
"postinstall": "fumadocs-mdx"
1110
},
1211
"dependencies": {
1312
"fumadocs-core": "15.2.10",

0 commit comments

Comments
 (0)