Skip to content

Commit d5b3177

Browse files
committed
Updated to Nextjs 14.1.4
1 parent 67a5ee7 commit d5b3177

File tree

5 files changed

+5196
-2625
lines changed

5 files changed

+5196
-2625
lines changed

.github/workflows/node.js.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ jobs:
1717
- name: Use Node.js 16.x
1818
uses: actions/setup-node@v1
1919
with:
20-
node-version: '16.x'
20+
node-version: "16.x"
2121

2222
- name: Installing my packages
2323
run: npm ci
2424

2525
- name: Build my App
26-
run: npm run build && npm run export && touch ./out/.nojekyll
26+
run: npm run build && touch ./out/.nojekyll
2727

2828
- name: Deploy 🚀
2929
uses: JamesIves/[email protected]

next.config.mjs

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22
* @type {import('next').NextConfig}
33
*/
44
const nextConfig = {
5+
output: "export",
56
images: {
6-
loader: 'akamai',
7-
path: '',
7+
loader: "akamai",
8+
path: "",
89
},
9-
assetPrefix: './',
10+
assetPrefix: "./",
1011
};
1112

1213
export default nextConfig;

0 commit comments

Comments
 (0)