Skip to content

Commit b01d401

Browse files
authored
Merge pull request #66 from KelvinTegelaar/main
[pull] main from KelvinTegelaar:main
2 parents 74f2a34 + 4a3d98a commit b01d401

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

.github/workflows/dev_deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
# For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig
2626
app_location: '/' # App source code path
2727
api_location: '' # Api source code path - optional
28-
output_location: 'out' # Built app content directory - optional
28+
output_location: '/out' # Built app content directory - optional
2929
###### End of Repository/Build Configurations ######
3030

3131
close_pull_request_job:

.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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ const config = {
1515
return [];
1616
},
1717
output: "export",
18+
distDir: "./out",
1819
};
1920

2021
module.exports = config;

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88
},
99
"license": "AGPL-3.0",
1010
"engines": {
11-
"node": "^22.13.0"
11+
"node": "^20.18.3"
1212
},
1313
"repository": {
1414
"type": "git",
1515
"url": "git@github.com:KelvinTegelaar/CIPP.git"
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)