Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8b1eab8

Browse files
committedAug 24, 2024
adding export
1 parent 95a1371 commit 8b1eab8

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed
 

‎.github/workflows/develop.yaml

+6
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,9 @@ jobs:
1919
- name: Lint & Build
2020
working-directory: ./app
2121
run: npm ci && npm run lint && npm run build
22+
- name: Upload build artifacts
23+
working-directory: ./app
24+
uses: actions/upload-artifact@v3
25+
with:
26+
name: build-artifacts
27+
path: out

‎app/next.config.mjs

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
/** @type {import('next').NextConfig} */
2-
const nextConfig = {};
2+
const nextConfig = {
3+
output: 'export'
4+
};
35

46
export default nextConfig;

0 commit comments

Comments
 (0)
Please sign in to comment.