I am using grails 3.2.7. Can anyone please tell me how to prevent Interceptor to intercept static resources?
it's currently intercepting
<script src="/appName/js/apps/file.js"></script>
as
controllerName == js, actionName == apps, params == [controller:js, action:apps, id:file.js]
can anyone help me with a way to prevent such interception. I want my Interceptor should only work for controller, actions. Not for static resources.