Rayudu
Rayudu

Reputation: 1816

Aurelia MVC Set up having issues with 404 not found

I started using aurelia framework with Vs2015 and MVC.

Below is my implementation process

  1. Created new project with MVC in VS 2015.
  2. Copied all files except wwwroot inside skelton-es2016-asp.net5 from aurelia-skelton project from github.
  3. Later added all bootstarp and jquery plugin inside script and added in bundleconfig.cs
  4. Open command prompt from folder and jspm install,

    Then jspm install aurelia-framework,

    Then jspm install aurelia-bootstrapper

  5. Finally attached to IIS and browse.

But I am getting 404 not found with [email protected] js. Below is my screen.

enter image description here

Also below is my VS structure

enter image description here

Upvotes: 1

Views: 125

Answers (1)

Matthew James Davis
Matthew James Davis

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

Related Questions