0.3.0 • Published 9 years ago
laravel-elixir-htmlmin v0.3.0
Laravel Elixir htmlmin
This Laravel Elixir extension allows you to minify HTML.
Installation
npm install laravel-elixir-htmlminUsage
Assuming you write...
elixir(function(mix) {
mix.html('public');
});...this will render your resources/assets/html/public folder to public.
If you'd like to set a different output directory, you may pass a second argument to the html() method, like so:
mix.html('public', 'resources/views')