From 81c5baeb81f8e6e816649433b059ed5aec5ea77d Mon Sep 17 00:00:00 2001 From: Mark van Eijk Date: Fri, 30 Dec 2022 09:49:16 +0100 Subject: [PATCH] use public folder inside storage folder --- config/static.php | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/config/static.php b/config/static.php index 2b13528..6aa611b 100644 --- a/config/static.php +++ b/config/static.php @@ -4,7 +4,7 @@ /** * Path within storage disk to save files in. */ - 'path' => public_path('static'), + 'path' => storage_path('public/static'), /** * Configure a fallback cache driver. @@ -48,12 +48,6 @@ */ 'on_termination' => false, - /** - * This setting prevents saving the same static cache file twice (with and without trailing slash) using a 302 redirect. - * Enable when you want to use trailing slashes. - */ - 'use_trailing_slash' => false, - /** * Minify HTML before saving static file. */