This Statamic add-on removes HTML comments (<!-- ... -->) from responses before they are sent to the browser, optimizing your website's output.
- Automatically strips all HTML comments from
text/htmlresponses. - Lightweight middleware with minimal performance overhead.
- Seamlessly integrates with Statamic.
You can install the package via Composer:
composer require diffrentdigital/remove-html-commentsOnce installed, the add-on is automatically registered in your Statamic application. It runs as middleware for all routes in the web middleware group.
- The middleware processes all HTML responses.
- It identifies HTML comments using a regex pattern and removes them.
No additional configuration is required. 🎉
This add-on is designed to have minimal impact on performance. It only processes responses with the Content-Type header set to text/html.
If you experience any performance concerns, you can use Laravel Debugbar or other profiling tools to measure middleware execution time.
This package is open-sourced software licensed under the MIT license.
Contributions, issues, and feature requests are welcome! Feel free to check the issues page.
- Fork the repository.
- Make your changes in a feature branch.
- Submit a pull request.
This add-on was created by delz-dev.
This add-on removes HTML comments from responses, but only when the application is running in the production environment.
If you find this add-on useful, please consider starring the repository on GitHub or sharing it with others. 😊