Hello, I seemed to be really confused on how to use a custom js file in Tap5.4. I use to use @Import which no longer appears to fire.
I then decided to try and use require js and still can't get tapestry to load my script. I have the following config, src/main/resources/META-INF/modules/test.js very simple js define(["./jquery"], function( $) { int = function() { alert('test'); }; return int; }); I'm assuming I'm missing the part where tapestry calls the script, does anybody know what I'm missing?