Speed up ide loading, deferring profile loading for now

pull/223/head
Lennart Kats 2015-11-17 11:58:26 +00:00
rodzic 2da803b9db
commit 3042e61641
1 zmienionych plików z 6 dodań i 1 usunięć

Wyświetl plik

@ -29,7 +29,12 @@ var shortcuts = {
"s": ["standalone", "-s", "standalone"]
};
shortcuts.odev = shortcuts.onlinedev; // For backwards compatibility, if you see this in 2016 remove this line
var delayLoadConfigs = ["preview", "user-content", "api", "oldclient", "apps-proxy", "worker"];
var delayLoadConfigs = [
// Services that are usually not immediately needed
"preview", "user-content", "api", "apps-proxy", "worker",
// Services that are very slow to load, blocking others
"profile",
];
module.exports = main;