Search code examples
aurelia

Error: Unable to find module with ID: welcome when using aurelia-cli webpack with the skeleton-nav


I have copied the skeleton-navigation to the base install of an aurelia-cli webpack project and am getting Error: Unable to find module with ID: welcome


Solution

  • Have you got the moduleId set like this with a PLATFORM.moduleName(...) ?

    config.map([
              { route: ['', 'welcome'], name: 'welcome', moduleId: PLATFORM.moduleName('./welcome'), nav: true, title: 'Welcome' },