We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6008562 commit e1838c8Copy full SHA for e1838c8
src/browser/bundles/defaults.js
@@ -1,4 +1,5 @@
1
import { version } from '../../defaults.js'
2
3
export const cdnHost = 'cdn.rollbar.com';
4
-export const defaultRollbarJsUrl = `https://${cdnHost}/rollbarjs/refs/tags/v${version}/rollbar.min.js`;
+// concatenation over interpolation makes the minified file smaller
5
+export const defaultRollbarJsUrl = 'https://' + cdnHost + '/rollbarjs/refs/tags/v' + version + '/rollbar.min.js';
0 commit comments