Skip to content

Instantly share code, notes, and snippets.

@var-bin
Created December 20, 2017 21:57
Show Gist options
  • Save var-bin/c004276cc1cdc828a481ae5709d630d9 to your computer and use it in GitHub Desktop.
Save var-bin/c004276cc1cdc828a481ae5709d630d9 to your computer and use it in GitHub Desktop.
const homeIndex = {
name: "home",
url: "/home",
component: "homeComponent",
lazyLoad: ($transition$) => {
const $ocLazyLoad = $transition$.injector().get("$ocLazyLoad");
return require.ensure([], () => {
// load whole module
const module = require("./index/index.module");
$ocLazyLoad.load(module.default);
}, "index.module");
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment