最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

jquery - RequireJS adding '.map' to javascripts rather than '.js' suddenly - Stack Overflow

programmeradmin2浏览0评论

I had this working perfectly fine until just today when suddenly all of my js files being loaded via requirejs cannot be found and its because requirejs decided to give each a '.map' file extension rather than the '.js'

I added the '.js' to the paths just to see and then requirejs still failed because it pointed to 'jquery.min.js.js'

I'm baffled how this would suddenly change for no reason at all. Does anyone have any ideas?

require.config
  baseUrl: 'javascripts'
  paths:
    jquery: 'vendor/jquery-1.10.2.min'
    underscore: 'vendor/underscore.min'
    backbone: 'vendor/backbone.min'
  shim:
    underscore:
      exports: '_'
    backbone:
      deps: ["underscore", "jquery"]
      exports: "Backbone"

require [
  'jquery',
  'underscore',
  'backbone'#,
 ], ($, _, Backbone) ->
   $('body').prepend "<div class='marking-up-header'></div>"

Again this was working just fine the last time I worked on this and ing back to it today it was screwed up.

Ok, so I took out require.js altogether and now I'm getting the same missing errors with the '.map' still. I opened it up in safari (I was using chrome) and I'm not getting these errors at all. Is Chrome having a stroke? does anyone have any idea?

Thanks.

I had this working perfectly fine until just today when suddenly all of my js files being loaded via requirejs cannot be found and its because requirejs decided to give each a '.map' file extension rather than the '.js'

I added the '.js' to the paths just to see and then requirejs still failed because it pointed to 'jquery.min.js.js'

I'm baffled how this would suddenly change for no reason at all. Does anyone have any ideas?

require.config
  baseUrl: 'javascripts'
  paths:
    jquery: 'vendor/jquery-1.10.2.min'
    underscore: 'vendor/underscore.min'
    backbone: 'vendor/backbone.min'
  shim:
    underscore:
      exports: '_'
    backbone:
      deps: ["underscore", "jquery"]
      exports: "Backbone"

require [
  'jquery',
  'underscore',
  'backbone'#,
 ], ($, _, Backbone) ->
   $('body').prepend "<div class='marking-up-header'></div>"

Again this was working just fine the last time I worked on this and ing back to it today it was screwed up.

Ok, so I took out require.js altogether and now I'm getting the same missing errors with the '.map' still. I opened it up in safari (I was using chrome) and I'm not getting these errors at all. Is Chrome having a stroke? does anyone have any idea?

Thanks.

Share Improve this question edited Aug 23, 2013 at 0:47 Sparkmasterflex asked Aug 23, 2013 at 0:33 SparkmasterflexSparkmasterflex 1,8471 gold badge20 silver badges33 bronze badges 1
  • 2 Maybe this will help. stackoverflow./questions/17898165/… – veritasetratio Commented Aug 23, 2013 at 0:45
Add a ment  | 

2 Answers 2

Reset to default 8

As @alexanderb noted, this is happening because of the recent support for source maps in Chrome. To prevent this from happening (if you are not interested in using source maps for minified files), go to the Dev Tools settings panel and uncheck "Enable source maps" under the "Sources" section. Note however, that this turns off source-map functionality for all minified files that have specified a source map using // @ sourceMappingURL=jquery-1.10.2.min.map. No need to edit any files.

That's probably happening because of your referring minified files.

Typically you always use un-pressed sources, then you optimise the code with r.js during deployment, so all referred libraries are got minified anyway.

Try to change from the path section and see if issue still appears.

发布评论

评论列表(0)

  1. 暂无评论