Reputation: 1
I'm doing web project using Java EE framework. I want to use Grails UiPerformance plugin in my project. Can I use that plugin for user interface design? I would like to know what is the purpose of this plugin?
Upvotes: 0
Views: 31
Reputation: 75681
There are a few reasons why this is not the plugin you want. The purpose of the plugin is described here - it's to improve page loading performance and deals with gzipping, minification, bundling, etc.
The primary reason is that it has nothing to do with interface design. And if you do want a plugin for static resource handling, the asset-pipeline plugin is the current best option.
Upvotes: 1