Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/dev_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
# For more information regarding Static Web App workflow configurations, please visit: https://aka.ms/swaworkflowconfig
app_location: '/' # App source code path
api_location: '' # Api source code path - optional
output_location: 'out' # Built app content directory - optional
output_location: '/out' # Built app content directory - optional
###### End of Repository/Build Configurations ######

close_pull_request_job:
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,5 @@ yarn-debug.log*
yarn-error.log*

# vscode debug logs
debug.log
debug.log
app.log
1 change: 1 addition & 0 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ const config = {
return [];
},
output: "export",
distDir: "./out",
};

module.exports = config;
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
},
"license": "AGPL-3.0",
"engines": {
"node": "^22.13.0"
"node": "^20.18.3"
},
"repository": {
"type": "git",
"url": "git@github.com:KelvinTegelaar/CIPP.git"
},
"scripts": {
"dev": "next -H 127.0.0.1",
"build": "next build",
"build": "next build && rm -rf package.json yarn.lock",
"start": "next start",
"export": "next export",
"lint": "next lint",
Expand Down
2 changes: 1 addition & 1 deletion public/version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "7.4.0"
"version": "7.4.1"
}