Skip to content

Commit a473a6b

Browse files
authored
add symlink_path configurable
add symlink_path configurable
1 parent f7ea85e commit a473a6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Providers/ThemevelServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class ThemevelServiceProvider extends ServiceProvider
1919
public function boot()
2020
{
2121
if (!File::exists(public_path('Themes')) && config('theme.symlink') && File::exists(config('theme.theme_path'))) {
22-
App::make('files')->link(config('theme.theme_path'), public_path('Themes'));
22+
App::make('files')->link(config('theme.theme_path'), config('theme.symlink_path', public_path('Themes')));
2323
}
2424
}
2525

0 commit comments

Comments
 (0)