Generating source maps from browserify using grunt

前端 未结 2 1770
臣服心动
臣服心动 2021-02-07 00:33

I have followed the instructions here: https://www.npmjs.org/package/grunt-browserify, to try and set up source maps for browserify on grunt. The options for browserify in my gr

2条回答
  •  别跟我提以往
    2021-02-07 01:04

    use browserifyOptions instead of bundleOptions

    browserify: {
       options: {
          browserifyOptions: {
             debug: true
          }
       },
       ...
    }
    

提交回复
热议问题