Skip to content Skip to sidebar Skip to footer

How To Deploy A Web Application Aurelia In An Apache Server?

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 c

Solution 1:

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/fetch@0.9.0.js",
"jspm_packages/github/github/fetch@0.9.0/fetch.js"

with references to the correct version (0.10.1 in your case):

"jspm_packages/github/github/fetch@0.10.1.js",
"jspm_packages/github/github/fetch@0.10.1/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.

Post a Comment for "How To Deploy A Web Application Aurelia In An Apache Server?"