How to disable mini-JavaScript under Richfaces?

For debugging purposes, I need to make Richfaces use non-minified JavaScript. Is there an easy way to do this?

+4
source share
1 answer

An employee helped me by posting it here for posterity. In the web.xml file add

<context-param> <param-name>org.ajax4jsf.COMPRESS_SCRIPT</param-name> <param-value>false</param-value> </context-param> 

This does not seem to work for every script.

+4
source

Source: https://habr.com/ru/post/1314565/


All Articles