You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using requirejs to build all my sources into a single file.
I have two build, one for development (no compress, no mangle and source map) and one for production.
When I add the "generateSourceMaps" option, the generated file is being compress no matter what others options I set.
Here's my configuration :
options: {baseUrl: "src/js/",// generateSourceMaps: true, // adding this one output a minified filename: "loader",out: "dist/js/script.js",uglify: {// despite those optionsmangle: false,output: {beautify: true},}}
The text was updated successfully, but these errors were encountered:
Hello,
I'm using requirejs to build all my sources into a single file.
I have two build, one for development (no compress, no mangle and source map) and one for production.
When I add the "generateSourceMaps" option, the generated file is being compress no matter what others options I set.
Here's my configuration :
The text was updated successfully, but these errors were encountered: