File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## v1.5.2 - 2025-02-06
9
+
10
+ ### Fixed
11
+
12
+ - Fixed bad configuration file caling ` env() ` vs ` environment() ` .
13
+
8
14
## v1.5.1 - 2025-02-06
9
15
10
16
### Changed
Original file line number Diff line number Diff line change 16
16
| can be customized to any other path.
17
17
|
18
18
*/
19
- 'path ' => env ( 'ASSET_BUILD_PATH ' , 'build ' ),
19
+ 'path ' => environment ( 'ASSET_BUILD_PATH ' , 'build ' ),
20
20
21
21
/*
22
22
|--------------------------------------------------------------------------
25
25
|
26
26
| This URL is used to properly generate the URL to built assets.
27
27
*/
28
- 'url ' => env (
28
+ 'url ' => environment (
29
29
'ASSET_BUILD_URL ' ,
30
30
function_exists ( 'plugin_dir_url ' ) ? \plugin_dir_url ( __DIR__ ) . 'build ' : '' , // todo: replace with a framework helper method.
31
31
),
You can’t perform that action at this time.
0 commit comments