Not sure if I'm missing something. I see the .map file is there and in the right place, but Chrome isn't loading it. I noticed other files that I use define this explicitly at the end
```
//# sourceMappingURL=app.js.map
```
However, kendo doesn't specify it. If I add it manually, I get one step further, but then Chrome tries to download the file from `myapp.com/src/kendo.core.min.js` instead of getting it from `myapp/kendo/src/js/kendo.core.min.js`. The .map file defines the sourceRoot at the bottom as:
```
`sourceRoot":"../../src/`
```
It works great when I change it to:
```
`sourceRoot":"../src/js/`
```
```
//# sourceMappingURL=app.js.map
```
However, kendo doesn't specify it. If I add it manually, I get one step further, but then Chrome tries to download the file from `myapp.com/src/kendo.core.min.js` instead of getting it from `myapp/kendo/src/js/kendo.core.min.js`. The .map file defines the sourceRoot at the bottom as:
```
`sourceRoot":"../../src/`
```
It works great when I change it to:
```
`sourceRoot":"../src/js/`
```