2020-05-20 22:33:31 +00:00
|
|
|
// This sets up the URL prefix used in webpack's chunk loading.
|
|
|
|
// This file must be imported before any lazy-loading is being attempted.
|
2021-05-12 18:36:53 +00:00
|
|
|
import {joinPaths} from './utils.js';
|
2021-05-08 14:27:25 +00:00
|
|
|
const {AssetUrlPrefix} = window.config;
|
2019-11-17 21:39:06 +00:00
|
|
|
|
2021-05-12 18:36:53 +00:00
|
|
|
__webpack_public_path__ = joinPaths(AssetUrlPrefix, '/');
|