We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79260a3 commit 9994495Copy full SHA for 9994495
.github/workflows/publish.yml
@@ -30,7 +30,8 @@ jobs:
30
static_site_generator: next
31
32
- name: Build with Next.js 🏗️
33
- run: npx next build
+ run: npm run build
34
+ run: npm run export
35
36
- name: Upload artifact 📡
37
uses: actions/upload-pages-artifact@v3
package.json
@@ -6,7 +6,8 @@
6
"dev": "next dev --turbopack",
7
"build": "next build",
8
"start": "next start",
9
- "lint": "next lint"
+ "lint": "next lint",
10
+ "export": "next export"
11
},
12
"dependencies": {
13
"framer-motion": "^11.15.0",
0 commit comments