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
Hello,
Can someone help me with very weird bug? On production settings ace.js makes request to invalid path. Something like this: https://<domain>/en/patterns/snippets/markdown.js/ where correct path must be https://<domain>/static/plugins/js/snippets/markdown.js/. Development server on local machine doesn't produce such a behaviour. Maybe i miss some setting?
The text was updated successfully, but these errors were encountered:
The URL for markdown.js is ignoring the static files location and is trying to nest within the page structure that it is getting served, while at the same time ace.js is giving me this error:
Unable to infer path to ace from script src, use ace.config.set...
It's definitely related to the fact that ManifestStaticFilesStorage is creating separate versioned static files. I believe the Django Compressor also does something similar with the static files (adding a hash of the version to the filename, and therefore tied to the issue @dismine was having. I have no conflict with django-sekizai.
Hello,
Can someone help me with very weird bug? On production settings
ace.js
makes request to invalid path. Something like this:https://<domain>/en/patterns/snippets/markdown.js/
where correct path must behttps://<domain>/static/plugins/js/snippets/markdown.js/
. Development server on local machine doesn't produce such a behaviour. Maybe i miss some setting?The text was updated successfully, but these errors were encountered: