We build a GWT app (using gwt-maven-plugin) resulting in a .war file. Currently this .war file contains a file called hosted.html
, which is used to run in development (née hosted) mode, when query parameter gwt.codesvr=...
is specified.
Is there a security risk in having this the .war file in production, or is there another reason to make sure this file does not end up in the .war file?
If so, what is the simplest way to do so?
Thanks!