Complete the code to enable source maps in Sass compilation.
sass --watch input.scss:output.css --[1]Using --source-map tells Sass to generate source maps for easier debugging.
Complete the Sass configuration to include source maps in a build script.
sass --no-[1] input.scss output.cssThe --no-source-map flag disables source maps, so removing no- enables them.
Fix the error in the Sass command to generate source maps correctly.
sass input.scss output.css --[1]=trueThe correct flag is --source-map with a dash, not camelCase or other variations.
Fill both blanks to create a Sass command that watches files and generates source maps.
sass --[1] input.scss:output.css --[2]
--watch watches files for changes, and --source-map generates source maps for debugging.
Fill all three blanks to write a Sass command that watches, outputs compressed CSS, and generates source maps.
sass --[1] input.scss:output.css --[2]=[3]
--watch watches files, --style=compressed compresses CSS output, and --source-map generates source maps.
Note: The --source-map flag does not take a value, so it is not included here.