This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccountGUI/node_modulesOLD/@vue/cli-service/lib/commands/build/setPublicPath.js
2019-08-11 20:48:02 +02:00

15 lines
428 B
JavaScript

// This file is imported into lib/wc client bundles.
if (typeof window !== 'undefined') {
if (process.env.NEED_CURRENTSCRIPT_POLYFILL) {
require('current-script-polyfill')
}
var i
if ((i = window.document.currentScript) && (i = i.src.match(/(.+\/)[^/]+\.js(\?.*)?$/))) {
__webpack_public_path__ = i[1] // eslint-disable-line
}
}
// Indicate to webpack that this file can be concatenated
export default null