Skip to content

Commit

Permalink
Fix export command
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbaumgertner committed Jan 6, 2024
1 parent 391e9cc commit 664fc5d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,9 @@ jobs:
- name: Install dependencies
run: npm install

- name: Build
- name: Build and Static HTML Export
run: npm run build

- name: Static HTML Export
run: npm run export

- name: Disable Jekyl # https://github.blog/2009-12-29-bypassing-jekyll-on-github-pages/
run: touch ./out/.nojekyll

Expand Down
1 change: 1 addition & 0 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export',
reactStrictMode: true,
}

Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"start": "next start",
"lint": "next lint"
},
Expand Down

0 comments on commit 664fc5d

Please sign in to comment.