Update package dependencies to latest versions, enhancing compatibility and performance. Adjust start scripts in package.json to include NODE_OPTIONS for deprecation warnings. Add new launch configuration in VSCode for easier development setup. Enhance product filtering logic in Content component to ensure new product filters are only applied when applicable.

This commit is contained in:
seb
2025-07-05 13:48:42 +02:00
parent 5fc0c3213b
commit 11f5b2cbfd
4 changed files with 177 additions and 168 deletions

7
.vscode/launch.json vendored
View File

@@ -3,6 +3,7 @@
// This will install dependencies before starting the dev server
"version": "0.2.0",
"configurations": [
{
"type": "node-terminal",
"name": "Start with API propxy to seedheads.de (Install Deps)",
@@ -10,6 +11,12 @@
"command": "npm run start:seedheads",
"preLaunchTask": "npm: install",
"cwd": "${workspaceFolder}"
}, {
"type": "node-terminal",
"name": "Start",
"request": "launch",
"command": "npm run start",
"cwd": "${workspaceFolder}"
}
]
}