You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

publicpath.js 285 B

12345
  1. // This sets up webpack's chunk loading to load resources from the 'public'
  2. // directory. This file must be imported before any lazy-loading is being attempted.
  3. const url = new URL(document.currentScript.src);
  4. __webpack_public_path__ = url.pathname.replace(/\/[^/]*?\/[^/]*?$/, '/');