summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/webpack.js
blob: 1c6e632135d5f580d6ab72f42ffde1d73c0e1a6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/**
 * This is the first script loaded by webpack's runtime. It is used to manually configure
 * config.output.publicPath to account for relative_url_root or CDN settings which cannot be
 * baked-in to our webpack bundles.
 *
 * Note: This file should be at the top of an entry point and _cannot_ be moved to
 * e.g. the `window` scope, because it needs to be executed in the scope of webpack.
 */

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