1
0
mirror of https://github.com/hrfee/jfa-go.git synced 2024-06-28 20:37:46 +02:00

omit source map url in compiled css

This commit is contained in:
Harvey Tindall 2020-09-18 22:21:16 +01:00
parent 35a0be6a2c
commit 456ca8592c
Signed by: hrfee
GPG Key ID: BBC65952848FB1A2

View File

@ -46,7 +46,7 @@ for bsv in [d for d in local_path.iterdir() if "bs" in d.name]:
with open(css[i], "w") as f:
f.write(
sass.compile(
filename=str(scss[i].resolve()), output_style="expanded", precision=6
filename=str(scss[i].resolve()), output_style="expanded", precision=6, omit_source_map_url=True
)
)
if css[i].exists():