BigW Consortium Gitlab

webpack.js 354 Bytes
Newer Older
1 2
/**
 * This is the first script loaded by webpack's runtime. It is used to manually configure
3 4
 * config.output.publicPath to account for relative_url_root or CDN settings which cannot be
 * baked-in to our webpack bundles.
5 6
 */

7
if (gon && gon.webpack_public_path) {
8
  __webpack_public_path__ = gon.webpack_public_path; // eslint-disable-line camelcase
9
}