Reputation: 1118
To try, I used the latest "aurelia-skeleton-navigation 1.0.0-beta.1.0.1".
To deploy the Aurelia web application in an Apache server I used "gulp export" command and I copied the contents of the "export" in the "www/html/myapp" directory !
So, the welcome tab works fine, but not the "github users" tab !
The error is :
ERROR [app-router] Error: XHR error (404 Not Found) loading http://localhost/myapp/jspm_packages/github/github/[email protected] Error loading http://localhost/myapp/jspm_packages/github/github/[email protected] as "github:github/[email protected]" from http://localhost/myapp/dist/users.js Stack trace: o@http://localhost/myapp/jspm_packages/system.js:4:12750 e/http://localhost/myapp/jspm_packages/system.js:4:13275
what have I missed ?
Upvotes: 3
Views: 1126
Reputation: 35124
Based on the error message I can say that the fetch
polyfill is missing from the exported folder.
To fix that, edit the file build/export.json
. Replace the lines
"jspm_packages/github/github/[email protected]",
"jspm_packages/github/github/[email protected]/fetch.js"
with references to the correct version (0.10.1 in your case):
"jspm_packages/github/github/[email protected]",
"jspm_packages/github/github/[email protected]/fetch.js"
Then run the gulp export
command again and make sure that fetch
files are now copied into jspm_packages
.
There is already a pull request to fix that.
Upvotes: 1