renatomarinho / laravel-page-speed

Package to optimize your site automatically which results in a 35%+ optimization
MIT License
2.42k stars 279 forks source link

CollapseWhitespace Errors #77

Closed Bing1024 closed 3 years ago

Bing1024 commented 6 years ago

with BootStrap 4.1

Error

    $replace = [
        "/\n([\S])/" => '$1',
        "/\r/" => '',
        "/\n/" => '',
        "/\t/" => '',
        "/ +/" => ' ',
        "/> +</" => '><',
    ];

Suggest

    $replace = [
        "/\n([\S])/" => '$1',
        "/\r/" => '',
        "/\n/" => '',
        "/\t/" => '',
        "/ +/" => ' ',
       "/> +</" => '><', ------ Delete
    ];
joaorobertopb commented 5 years ago

Hi @Bing1024,

Can you please give me more details?

lucasMesquitaBorges commented 3 years ago

This issue was resolved at 2.0.0 version!