From 0c2260ca0fc9e02221aee17341c99915b4dc6cca Mon Sep 17 00:00:00 2001 From: David Bomba Date: Sun, 24 Nov 2024 17:29:05 +1100 Subject: [PATCH] Change paths for debian_docker filesystem --- VERSION.txt | 2 +- config/filesystems.php | 2 +- config/ninja.php | 4 ++-- vite.config.ts.react | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/VERSION.txt b/VERSION.txt index 2fdff39862..5d0bb87c41 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -5.10.56 \ No newline at end of file +5.10.57 \ No newline at end of file diff --git a/config/filesystems.php b/config/filesystems.php index aa776486cd..aa40993c69 100644 --- a/config/filesystems.php +++ b/config/filesystems.php @@ -66,7 +66,7 @@ return [ 'debian_docker' => [ 'driver' => 'local', - 'root' => storage_path('app/public/storage'), + 'root' => storage_path('app/public'), 'url' => env('APP_URL').'/storage', 'permissions' => [ 'file' => [ diff --git a/config/ninja.php b/config/ninja.php index fd1097b347..e555a7d888 100644 --- a/config/ninja.php +++ b/config/ninja.php @@ -17,8 +17,8 @@ return [ 'require_https' => env('REQUIRE_HTTPS', true), 'app_url' => rtrim(env('APP_URL', ''), '/'), 'app_domain' => env('APP_DOMAIN', 'invoicing.co'), - 'app_version' => env('APP_VERSION', '5.10.56'), - 'app_tag' => env('APP_TAG', '5.10.56'), + 'app_version' => env('APP_VERSION', '5.10.57'), + 'app_tag' => env('APP_TAG', '5.10.57'), 'minimum_client_version' => '5.0.16', 'terms_version' => '1.0.1', 'api_secret' => env('API_SECRET', false), diff --git a/vite.config.ts.react b/vite.config.ts.react index c682d25f73..3009488254 100644 --- a/vite.config.ts.react +++ b/vite.config.ts.react @@ -14,7 +14,7 @@ export default defineConfig({ output: { // This will output a single bundle file entryFileNames: 'bundle.[hash].js', - chunkFileNames: 'bundle.[hash].js' + manualChunks: undefined } }, },