Skip to content
Snippets Groups Projects
Commit b51a998a authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

Log an error when getAssetURL() is used before initAssetBaseURL()

This is a common source for errors and we currently fall back to a relative path
which happens to work locally but not on the server.
parent eb53dfdf
No related branches found
No related tags found
No related merge requests found
......@@ -220,6 +220,8 @@ export const getAssetURL = (path) => {
// We already found the path before, just go with it
if (_assetBaseURL) {
return new URL(path, _assetBaseURL).href;
} else {
console.error('Using getAssetURL(), but initAssetBaseURL() wasn\'t called yet');
}
// If all fails we just fall back to relative paths and hope the
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment