Viewing file: tailwind-merge.php (1.3 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
declare(strict_types=1);
return [ /* |-------------------------------------------------------------------------- | Prefix |-------------------------------------------------------------------------- | | If you are using a tailwind prefix, you can specify it here. */
'prefix' => env('TAILWIND_MERGE_PREFIX', null),
/* |-------------------------------------------------------------------------- | Class groups |-------------------------------------------------------------------------- | | If TailwindMerge is not able to merge your changes properly you can | modify the merge process by modifying existing class groups or adding | new class groups. | | For example, if you want to add a custom font size of 'very-large': | 'classGroups' => [ | 'font-size' => [ | ['text' => ['very-large']] | ], | ], */
'classGroups' => [],
/* |-------------------------------------------------------------------------- | Blade directive |-------------------------------------------------------------------------- | | Here you may specify the name of the blade directive that will be used. | Set it to null to entirely disable the blade directive. */
'blade_directive' => 'twMerge', ];
|