HTMLMin / Laravel-HTMLMin

A simple HTML minifier for Laravel 5, 6, 7, 8 & 9.
MIT License
1.02k stars 118 forks source link

Only minify on live server #99

Open musdy opened 6 years ago

musdy commented 6 years ago

Is there a way to stop minification on local and staging?

Tickthokk commented 6 years ago

Not the maintainer, but I think you could probably just tie it to APP_DEBUG in the htmlmin.php config file.

    'blade' => ! env('APP_DEBUG'),

instead of

    'blade' => true,
Eugene-Melbourne commented 6 years ago

no. APP_DEBUG is a harmful thing to enable on production when specific property can disable the package but keep the app-debug secure.