zap/config/filesystems.php
2025-08-19 18:59:43 -04:00

23 lines
515 B
PHP

<?php
return [
'default' => 'source',
'disks' => [
'source' => [
'driver' => 'local',
'root' => getcwd() . "/site",
'throw' => true,
],
'build_local' => [
'driver' => 'local',
'root' => getcwd() . "/build_local",
'throw' => true,
],
'build_production' => [
'driver' => 'local',
'root' => getcwd() . "/build_production",
'throw' => true,
],
],
];