Skip to content

Commit a85d895

Browse files
committed
docs: added some comments
1 parent 4156153 commit a85d895

File tree

1 file changed

+2
-2
lines changed
  • resources/js/electron-plugin/src/server

1 file changed

+2
-2
lines changed

resources/js/electron-plugin/src/server/php.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,8 +265,8 @@ function getDefaultEnvironmentVariables(secret?: string, apiPort?: number): Envi
265265

266266
// Only add cache paths if in production mode
267267
if (runningSecureBuild()) {
268-
variables.APP_SERVICES_CACHE = join(bootstrapCache, 'services.php');
269-
variables.APP_PACKAGES_CACHE = join(bootstrapCache, 'packages.php');
268+
variables.APP_SERVICES_CACHE = join(bootstrapCache, 'services.php'); // Should be present and writable
269+
variables.APP_PACKAGES_CACHE = join(bootstrapCache, 'packages.php'); // Should be present and writable
270270
variables.APP_CONFIG_CACHE = join(bootstrapCache, 'config.php');
271271
variables.APP_ROUTES_CACHE = join(bootstrapCache, 'routes-v7.php');
272272
variables.APP_EVENTS_CACHE = join(bootstrapCache, 'events.php');

0 commit comments

Comments
 (0)