Skip to content

Commit 664fc5d

Browse files
Fix export command
1 parent 391e9cc commit 664fc5d

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,9 @@ jobs:
1515
- name: Install dependencies
1616
run: npm install
1717

18-
- name: Build
18+
- name: Build and Static HTML Export
1919
run: npm run build
2020

21-
- name: Static HTML Export
22-
run: npm run export
23-
2421
- name: Disable Jekyl # https://github.blog/2009-12-29-bypassing-jekyll-on-github-pages/
2522
run: touch ./out/.nojekyll
2623

next.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/** @type {import('next').NextConfig} */
22
const nextConfig = {
3+
output: 'export',
34
reactStrictMode: true,
45
}
56

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
"scripts": {
66
"dev": "next dev",
77
"build": "next build",
8-
"export": "next export",
98
"start": "next start",
109
"lint": "next lint"
1110
},

0 commit comments

Comments
 (0)