You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WebJarAssetLocator$ResourceException: /webjars//bootstrap/null/less/mixins.less could not be found. Make sure you've added the corresponding WebJar and please check for typos.
This causes the recent-version substitution to fail because at some point it causes the slash to be doubled and /webjars//bootstrap/curent/less/mixins.less cannot be found in the asset map.
Either the doubling of the slash should be avoided or an exception should be thrown that leading slashes are not supported at all.
The text was updated successfully, but these errors were encountered:
When trying to load the
css/google-bootstrap.less
that ships in Wicket Bootstrap via a LessResourceReference, e.g.this exception is triggered:
The reason appears to be the leading slash here:
This causes the recent-version substitution to fail because at some point it causes the slash to be doubled and
/webjars//bootstrap/curent/less/mixins.less
cannot be found in the asset map.Either the doubling of the slash should be avoided or an exception should be thrown that leading slashes are not supported at all.
The text was updated successfully, but these errors were encountered: