diff --git a/app/assets/javascripts/discourse/lib/bootstrap-json/index.js b/app/assets/javascripts/discourse/lib/bootstrap-json/index.js index 8c5cd665f36..51d39db4947 100644 --- a/app/assets/javascripts/discourse/lib/bootstrap-json/index.js +++ b/app/assets/javascripts/discourse/lib/bootstrap-json/index.js @@ -6,6 +6,7 @@ const { encode } = require("html-entities"); const cleanBaseURL = require("clean-base-url"); const path = require("path"); const fs = require("fs"); +const crypto = require("crypto"); const IGNORE_PATHS = [ /\/ember-cli-live-reload\.js$/, @@ -92,6 +93,11 @@ function body(buffer, bootstrap) { function bodyFooter(buffer, bootstrap) { buffer.push(bootstrap.theme_html.body_tag); buffer.push(bootstrap.html.before_body_close); + + let v = crypto.randomUUID(); + buffer.push(` + + `); } function hiddenLoginForm(buffer, bootstrap) {