2017-06-28 16:15:50 -04:00
|
|
|
/**
|
|
|
|
* This is the first script loaded by webpack's runtime. It is used to manually configure
|
2017-06-28 22:57:35 -04:00
|
|
|
* config.output.publicPath to account for relative_url_root or CDN settings which cannot be
|
|
|
|
* baked-in to our webpack bundles.
|
2017-06-28 16:15:50 -04:00
|
|
|
*/
|
|
|
|
|
2017-06-28 22:57:35 -04:00
|
|
|
if (gon && gon.webpack_public_path) {
|
2017-08-18 17:05:53 -04:00
|
|
|
__webpack_public_path__ = gon.webpack_public_path; // eslint-disable-line camelcase
|
2017-06-28 16:15:50 -04:00
|
|
|
}
|