@actual-app/sync-server 25.9.0-nightly.20250829 → 25.9.0-nightly.20250830

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/build/src/app.js +1 -1
  2. package/package.json +2 -2
package/build/src/app.js CHANGED
@@ -111,7 +111,7 @@ if (process.env.NODE_ENV === 'development') {
111
111
  else {
112
112
  console.log('Running in production mode - Serving static React app');
113
113
  app.use(express.static(config.get('webRoot'), { index: false }));
114
- app.get('/{*splat}', (req, res) => res.sendFile(config.get('webRoot') + '/index.html'));
114
+ app.get('/{*splat}', (req, res) => res.sendFile('index.html', { root: config.get('webRoot') }));
115
115
  }
116
116
  function parseHTTPSConfig(value) {
117
117
  if (value.startsWith('-----BEGIN')) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@actual-app/sync-server",
3
- "version": "25.9.0-nightly.20250829",
3
+ "version": "25.9.0-nightly.20250830",
4
4
  "license": "MIT",
5
5
  "description": "actual syncing server",
6
6
  "bin": {
@@ -28,7 +28,7 @@
28
28
  },
29
29
  "dependencies": {
30
30
  "@actual-app/crdt": "2.1.0",
31
- "@actual-app/web": "25.9.0-nightly.20250829",
31
+ "@actual-app/web": "25.9.0-nightly.20250830",
32
32
  "bcrypt": "^6.0.0",
33
33
  "better-sqlite3": "^12.2.0",
34
34
  "convict": "^6.2.4",