mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 07:44:25 +00:00
2add8fe9be
* Frontend refactor, PascalCase to camelCase, remove unused code * fix
7 lines
275 B
JavaScript
7 lines
275 B
JavaScript
// This sets up the URL prefix used in webpack's chunk loading.
|
|
// This file must be imported before any lazy-loading is being attempted.
|
|
import {joinPaths} from './utils.js';
|
|
const {assetUrlPrefix} = window.config;
|
|
|
|
__webpack_public_path__ = joinPaths(assetUrlPrefix, '/');
|