We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 391e9cc commit 664fc5dCopy full SHA for 664fc5d
.github/workflows/build.yml
@@ -15,12 +15,9 @@ jobs:
15
- name: Install dependencies
16
run: npm install
17
18
- - name: Build
+ - name: Build and Static HTML Export
19
run: npm run build
20
21
- - name: Static HTML Export
22
- run: npm run export
23
-
24
- name: Disable Jekyl # https://github.blog/2009-12-29-bypassing-jekyll-on-github-pages/
25
run: touch ./out/.nojekyll
26
next.config.js
@@ -1,5 +1,6 @@
1
/** @type {import('next').NextConfig} */
2
const nextConfig = {
3
+ output: 'export',
4
reactStrictMode: true,
5
}
6
package.json
@@ -5,7 +5,6 @@
"scripts": {
"dev": "next dev",
7
"build": "next build",
8
- "export": "next export",
9
"start": "next start",
10
"lint": "next lint"
11
},
0 commit comments