const queryString = require("query-string"); const options = queryString.parse(location.search); export let queryParamOptions = { embedProvider: null, fullVersion: false, }; if (options.embed) { queryParamOptions.embedProvider = options.embed; } // Allow testing full version outside of standalone if (options.fullVersion && !G_IS_PROD) { queryParamOptions.fullVersion = true; }