Hi, i want to configure grunt file to generate source maps compatible with FireFox Developer Tools.
Tried add this to grunt.js:
grunt.initConfig({
watch: {
options: {
strictImports : true,
sourceMap: true,
sourceMapFilename: 'public/stylesheet.css.map',
sourceMapURL: 'http://127.0.0.1:4567/stylesheet.css.map'
}
lessUpdated_Client: {
files: [
'public/*.less',
'node_modules/nodebb-*/*.less', 'node_modules/nodebb-*/**/*.less',
'!node_modules/nodebb-*/node_modules/**',
'!node_modules/nodebb-*/.git/**'
]
},