Finally found a topic with good explanation an answers:
Didn't expect the config.json would influence such requests.
Kind regards.
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/**'
]
},
Grunt is not compiling the less files of NodeBB. It just watches changes and notifies (or restarts) NodeBB. NodeBB itself manages the compilation of LESS files.
I assume this would be the place to add such options.