@@ -34,6 +34,10 @@ bool source_map_embed;
34
34
bool source_map_contents;
35
35
```
36
36
``` C
37
+ // create file urls for sources
38
+ bool source_map_file_urls;
39
+ ```
40
+ ``` C
37
41
// Disable sourceMappingUrl in css output
38
42
bool omit_source_map_url;
39
43
```
@@ -225,6 +229,7 @@ enum Sass_Output_Style sass_option_get_output_style (struct Sass_Options* option
225
229
bool sass_option_get_source_comments (struct Sass_Options* options);
226
230
bool sass_option_get_source_map_embed (struct Sass_Options* options);
227
231
bool sass_option_get_source_map_contents (struct Sass_Options* options);
232
+ bool sass_option_get_source_map_file_urls (struct Sass_Options* options);
228
233
bool sass_option_get_omit_source_map_url (struct Sass_Options* options);
229
234
bool sass_option_get_is_indented_syntax_src (struct Sass_Options* options);
230
235
const char* sass_option_get_indent (struct Sass_Options* options);
@@ -244,6 +249,7 @@ void sass_option_set_output_style (struct Sass_Options* options, enum Sass_Outpu
244
249
void sass_option_set_source_comments (struct Sass_Options* options, bool source_comments);
245
250
void sass_option_set_source_map_embed (struct Sass_Options* options, bool source_map_embed);
246
251
void sass_option_set_source_map_contents (struct Sass_Options* options, bool source_map_contents);
252
+ void sass_option_set_source_map_file_urls (struct Sass_Options* options, bool source_map_file_urls);
247
253
void sass_option_set_omit_source_map_url (struct Sass_Options* options, bool omit_source_map_url);
248
254
void sass_option_set_is_indented_syntax_src (struct Sass_Options* options, bool is_indented_syntax_src);
249
255
void sass_option_set_indent (struct Sass_Options* options, const char* indent);
0 commit comments