Something about this and why I have this issue on Routings.
The Bootstrap 5 Paging Generator
This component generate this: <a href="javascript:void(0)">
for the links of every pagin button. And acording to CSP rules, javascript:void(0)
violates it rules because potential XSS security vulnerability could exist.
So, one way to solve this could be considering replacing the href="javascript:void(0)"
by href="#"
, and do the same on every other component that use the same javascript:void(0) as href. Actually the original way in how Bootstrap manage it, using “#”.