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
When setting JFME_CONTENT_DIR, the first directory of the list is check first for looking content, if the content is found, the others content directories are not checked.
This behavior implies that the content in the first directory of JFME_CONTENT_DIR overwrite the others.
Example : for a directory my-content/ and the file base.html, if JFME_CONTENT_DIR is set to [BASE_DIR / "content"] + [BASE_DIR / "my-content"], the my-content/base.html will NOT overwrite content/base.html
Expected : the opposite behavior would be clearer for the user, the last content directory should override others.
The text was updated successfully, but these errors were encountered:
When setting
JFME_CONTENT_DIR
, the first directory of the list is check first for looking content, if the content is found, the others content directories are not checked.This behavior implies that the content in the first directory of
JFME_CONTENT_DIR
overwrite the others.Example : for a directory
my-content/
and the filebase.html
, ifJFME_CONTENT_DIR
is set to[BASE_DIR / "content"] + [BASE_DIR / "my-content"]
, themy-content/base.html
will NOT overwritecontent/base.html
Expected : the opposite behavior would be clearer for the user, the last content directory should override others.
The text was updated successfully, but these errors were encountered: