diff options
author | silverwind <me@silverwind.io> | 2021-05-08 16:27:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-08 16:27:25 +0200 |
commit | 24ad131221d8cb0becf726e0570f53838262edf1 (patch) | |
tree | a06648e4fd6b051eaca60513b63ba3fe69314cd1 /web_src/js/publicpath.js | |
parent | e2786147539909eaef2bc39fb728a10b88277d31 (diff) | |
download | gitea-24ad131221d8cb0becf726e0570f53838262edf1.tar.gz gitea-24ad131221d8cb0becf726e0570f53838262edf1.zip |
Rename StaticUrlPrefix to AssetUrlPrefix (#15779)
Use a new name for this template/frontend variable to make it distinct
from the server variable StaticURLPrefix.
Diffstat (limited to 'web_src/js/publicpath.js')
-rw-r--r-- | web_src/js/publicpath.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/web_src/js/publicpath.js b/web_src/js/publicpath.js index 38865aa666..bfc81b8765 100644 --- a/web_src/js/publicpath.js +++ b/web_src/js/publicpath.js @@ -1,9 +1,9 @@ // This sets up the URL prefix used in webpack's chunk loading. // This file must be imported before any lazy-loading is being attempted. -const {StaticUrlPrefix} = window.config; +const {AssetUrlPrefix} = window.config; -if (StaticUrlPrefix) { - __webpack_public_path__ = StaticUrlPrefix.endsWith('/') ? StaticUrlPrefix : `${StaticUrlPrefix}/`; +if (AssetUrlPrefix) { + __webpack_public_path__ = AssetUrlPrefix.endsWith('/') ? AssetUrlPrefix : `${AssetUrlPrefix}/`; } else { const url = new URL(document.currentScript.src); __webpack_public_path__ = url.pathname.replace(/\/[^/]*?\/[^/]*?$/, '/'); |