Skip to content

Commit

Permalink
fix static path
Browse files Browse the repository at this point in the history
  • Loading branch information
aktech committed Aug 23, 2023
1 parent 09d3d2a commit d77b93b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generate
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ templates = [
]

BASE_URL_PREFIX = os.path.join('/', os.environ.get('BASE_URL_PREFIX', ''))
STATIC_PATH = f"{BASE_URL_PREFIX}/static"
STATIC_PATH = os.path.join(BASE_URL_PREFIX, "static")

# Sorted alphabetically:
languages = ["cs", "de", "en", "fr", "nl", "pt", "ru", "zh", "es"]
Expand Down

0 comments on commit d77b93b

Please sign in to comment.