Skip to content

Commit

Permalink
mod_development: Don't let sass create a source mapping
Browse files Browse the repository at this point in the history
  • Loading branch information
Arjan Scherpenisse committed May 20, 2015
1 parent 8fdf3ca commit 905bf67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/mod_development/mod_development.erl
Expand Up @@ -142,7 +142,7 @@ handle_file(_Verb, ".scss", F) ->
OutPath = filename:join(filename:dirname(InPath), "css"),
case filelib:is_dir(OutPath) of
true ->
os:cmd("sass -C --update " ++ z_utils:os_escape(InPath) ++ ":" ++ z_utils:os_escape(OutPath));
os:cmd("sass -C --sourcemap=none --update " ++ z_utils:os_escape(InPath) ++ ":" ++ z_utils:os_escape(OutPath));
false ->
undefined
end;
Expand Down

0 comments on commit 905bf67

Please sign in to comment.