2020-05-21 00:33:31 +02: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 20:36:53 +02:00
|
|
|
import {joinPaths} from './utils.js';
|
2021-05-08 16:27:25 +02:00
|
|
|
const {AssetUrlPrefix} = window.config;
|
2019-11-17 22:39:06 +01:00
|
|
|
|
2021-05-12 20:36:53 +02:00
|
|
|
__webpack_public_path__ = joinPaths(AssetUrlPrefix, '/');
|