23 lines
515 B
PHP
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,
|
|
],
|
|
],
|
|
];
|