Update package-lock.json to add @tanstack/react-query dependency and adjust peer dependencies for various packages. Modify backend and API server URLs in config.js for production environment.

This commit is contained in:
Tom Butcher 2025-11-24 03:34:37 +00:00
parent 91e7121fd5
commit c6c99bb02c
2 changed files with 762 additions and 97 deletions

855
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -6,9 +6,9 @@ const config = {
logLevel: 'trace'
},
production: {
backendUrl: 'http://192.168.68.53:8080',
backendUrl: 'https://dev.tombutcher.work/api',
printServerUrl: 'ws://192.168.68.53:8081',
apiServerUrl: 'ws://192.168.68.53:9090',
apiServerUrl: 'https://dev-wss.tombutcher.work',
logLevel: 'error'
}
}