24 lines
502 B
PHP
24 lines
502 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
return [
|
||
|
|
|
||
|
|
'theme' => 'tailwind',
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enable or Disable automatic injection of core assets
|
||
|
|
*/
|
||
|
|
'inject_core_assets_enabled' => false,
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enable or Disable automatic injection of third-party assets
|
||
|
|
*/
|
||
|
|
'inject_third_party_assets_enabled' => false,
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Enable Blade Directives (Not required if automatically injecting or using bundler approaches)
|
||
|
|
*/
|
||
|
|
'enable_blade_directives ' => false,
|
||
|
|
|
||
|
|
];
|