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
#if True 'freeze' will convert all absolute urls to relative urls
52
-
#useful if the generated static site will run offline or in an unknown folder which is not the document-root (only if FREEZE_BASE_URL is not defined)
53
+
#useful if the generated static site will run locally (file://) or in an unknown folder which is not the document-root (only if FREEZE_BASE_URL is not defined)
53
54
FREEZE_RELATIVE_URLS=False
54
55
56
+
#if True 'freeze' will inject a script at the end of each page
57
+
#which will force hrefs like 'path/' to 'path/index.html' (only if the site is running under file://)
58
+
#useful if the generated static site will run locally (requires FREEZE_RELATIVE_URLS set to True) to prevent local directory index
59
+
FREEZE_LOCAL_URLS=False
60
+
55
61
#if True 'freeze' will fetch each url founded in sitemap.xml
0 commit comments