Reputation: 1816
I started using aurelia framework with Vs2015 and MVC.
Below is my implementation process
Open command prompt from folder and jspm install
,
Then jspm install aurelia-framework
,
Then jspm install aurelia-bootstrapper
Finally attached to IIS and browse.
But I am getting 404 not found with [email protected] js. Below is my screen.
Also below is my VS structure
Upvotes: 1
Views: 125
Reputation: 12295
Make sure you have installed core-js
through JSPM. Add the dependency to your package.json
.
package.json
"jspm": {
"dependencies": {
"core-js": "npm:[email protected]"
}
}
Then type jspm install
in the command line.
Upvotes: 1