So my question is very similar to this one: SystemJS (Aurelia with jspm) fails to load "aurelia-pal-browser" from jspm_packages folder , however the solution there does not work for me. Also my error is slightly different.
system.src.js:123 Uncaught (in promise) Error: (SystemJS) XHR error (404 Not Found) loading http://localhost:9000/app/aurelia-pal-browser.js Error: XHR error (404 Not Found) loading http://localhost:9000/app/aurelia-pal-browser.js Error loading http://localhost:9000/app/aurelia-pal-browser.js
It seems that System.js is trying to load aurelia-pal-browser.js
from my app
folder (this is my main code folder). I have my config.js paths
as:
paths: {
"*": "app/*.js",
"github:*": "jspm_packages/github/*",
"npm:*": "jspm_packages/npm/*"
},
Other than that my app is super bare bones, this is my first attempt an Aurelia project.