Copy folder structure with Laravel Mix (Laravel 5.4)
Is it possible to copy a complete folder structure with Laravel Mix?
When using
mix.copy('./sourcepath/', './public/static');
all files are copied to "public/static" without their folder structure (flat structure / no subfolders). Is it somehow possible (without copy them one by one) to copy a complete folder structure including all files?