We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7858c0a commit 45f1d03Copy full SHA for 45f1d03
1 file changed
core/src/Console/TailwindBuildCommand.php
@@ -112,7 +112,8 @@ private function discoverPackages(): array
112
}
113
114
/* -------------------- css/ (frontend) -------------------- */
115
- if (is_file(EVO_BASE_PATH . 'css/tailwind.css')) {
+ $styles = glob(EVO_BASE_PATH . 'css/*tailwind.css');
116
+ if (count($styles)) {
117
$labels[] = 'frontend';
118
$map['frontend'] = 'css';
119
0 commit comments