Skip to content

Commit 4a3d98a

Browse files
Merge pull request #3865 from KelvinTegelaar/dev
Dev
2 parents 640c8da + d9205e3 commit 4a3d98a

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,5 @@ yarn-debug.log*
2626
yarn-error.log*
2727

2828
# vscode debug logs
29-
debug.log
29+
debug.log
30+
app.log

next.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const config = {
1515
return [];
1616
},
1717
output: "export",
18-
distDir: "/out",
18+
distDir: "./out",
1919
};
2020

2121
module.exports = config;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
},
1717
"scripts": {
1818
"dev": "next -H 127.0.0.1",
19-
"build": "next build",
19+
"build": "next build && rm -rf package.json yarn.lock",
2020
"start": "next start",
2121
"export": "next export",
2222
"lint": "next lint",

public/version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version": "7.4.0"
2+
"version": "7.4.1"
33
}

0 commit comments

Comments
 (0)