1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-07 07:16:51 +02:00

Add /vendor/ to default exclusion list of FileCompiler

This commit is contained in:
Ryan Cramer
2024-09-06 15:03:17 -04:00
parent 67da683ff6
commit ffddd85566

View File

@@ -187,6 +187,7 @@ class FileCompiler extends Wire {
}
$this->addExclusion($config->paths->wire);
$this->addExclusion($config->paths->root . 'vendor/');
$rootPath = $config->paths->root;
$targetPath = $this->cachePath;
@@ -1202,4 +1203,3 @@ class FileCompiler extends Wire {
}
}