I create ExtJs 5 test app with Sencha Cmd on my Asp.NET MVC application in Scripts/Ext folder:
I have successfully run it with index.html file in Scripts/Ext folder:
My scripts folder place in localhost:63059/Scripts:
localhost:63059/Scripts/Ext/app.js
localhost:63059/Scripts/Ext/bootstrap.js
localhost:63059/Scripts/Ext/bootstrap.json
localhost:63059/Scripts/Ext/app/Application.js
etc...
Start page url: localhost:63059/ or localhost:63059/Home/Index/
I add bootstrap.js in my _Layout.cshtml:
<script id="microloader" type="text/javascript" src="~/Scripts/Ext/bootstrap.js"></script>
But when I try to run it in my HomeController IndexAction, I have error: localhost:63059/bootstrap.json Failed to load resource: the server responded with a status of 404 (Not Found)
How I can change default web path to generated ext app with Sencha Cmd?