Issue Description
The application is currently using NPM-based WebJars (org.webjars.npm:bootstrap) but attempting to access resources using traditional WebJar paths, causing static resource loading failures.
Current Behavior
- Using NPM-based WebJars but with traditional path structure
- Current path:
/webjars/bootstrap/5.2.3/dist/js/bootstrap.bundle.min.js
- Similar issue with font-awesome WebJar paths
Solution
A pull request (#355) has been created to fix this issue by:
- Updating the WebJar paths in layout.html to match the NPM structure
- Removing version numbers from the paths as they are managed by Maven
Related
Issue Description
The application is currently using NPM-based WebJars (org.webjars.npm:bootstrap) but attempting to access resources using traditional WebJar paths, causing static resource loading failures.
Current Behavior
/webjars/bootstrap/5.2.3/dist/js/bootstrap.bundle.min.jsSolution
A pull request (#355) has been created to fix this issue by:
Related