Hey guys,
Please let me know, i have integrated qlik sense app with visual studio successfully using javascript script below. but when i try to load it take more than 15-16 seconds to load all the modules from qlik to visual studio. what should i have do to reduce the loading time of the below script.
require.config({
baseUrl: (config.isSecure ? "https://" : "http://") + config.host + (config.port ? ":" + config.port : "") + config.prefix + "resources",
config: {
text: {
useXhr: function (url, protocol, hostname, port) {
return true;
}
}
}
});
the below script alone takes 7-8 second to open..
require(["js/qlik", 'jquery'], function (qlik, $) {
app = qlik.openApp('324aa6fd-409c-4a7d-b5b8-9e92cfe81f38', config);
So please let me know how i can achieve this shortly and how i reduce the loading time issue..