2020-05-21 07:33:31 +09: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-13 03:36:53 +09:00
|
|
|
import {joinPaths} from './utils.js';
|
2021-05-08 23:27:25 +09:00
|
|
|
const {AssetUrlPrefix} = window.config;
|
2019-11-18 06:39:06 +09:00
|
|
|
|
2021-05-13 03:36:53 +09:00
|
|
|
__webpack_public_path__ = joinPaths(AssetUrlPrefix, '/');
|