Skip to content

Commit

Permalink
remove css map
Browse files Browse the repository at this point in the history
  • Loading branch information
NeroBlackstone committed Jun 11, 2021
1 parent f71a6b7 commit d6d4fe7
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 5 deletions.
2 changes: 1 addition & 1 deletion _config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const site = lume({
location: new URL(data.author.url),
});

site.script("watchSass","sass --watch src/sass/darkstyles.scss:src/css/darkstyles.css src/sass/lightstyles.scss:src/css/lightstyles.css")
site.script("watchSass","sass --watch src/sass/darkstyles.scss:src/css/darkstyles.css src/sass/lightstyles.scss:src/css/lightstyles.css --no-source-map")

site.ignore("README.md");
site.ignore("sass")
Expand Down
5 changes: 4 additions & 1 deletion src/css/darkstyles.css
Original file line number Diff line number Diff line change
Expand Up @@ -10533,4 +10533,7 @@ body {
grid-template-rows: auto 1fr auto;
}

/*# sourceMappingURL=darkstyles.css.map */
.footer {
padding: 3rem 1.5rem 3rem;
}

1 change: 0 additions & 1 deletion src/css/darkstyles.css.map

This file was deleted.

5 changes: 4 additions & 1 deletion src/css/lightstyles.css
Original file line number Diff line number Diff line change
Expand Up @@ -10596,4 +10596,7 @@ body {
grid-template-rows: auto 1fr auto;
}

/*# sourceMappingURL=lightstyles.css.map */
.footer {
padding: 3rem 1.5rem 3rem;
}

1 change: 0 additions & 1 deletion src/css/lightstyles.css.map

This file was deleted.

4 changes: 4 additions & 0 deletions src/sass/dark_overrides.scss
Original file line number Diff line number Diff line change
Expand Up @@ -289,4 +289,8 @@ body{
min-height: 100vh;
display: grid;
grid-template-rows: auto 1fr auto;
}

.footer{
padding: 3rem 1.5rem 3rem;
}
4 changes: 4 additions & 0 deletions src/sass/light_overrides.scss
Original file line number Diff line number Diff line change
Expand Up @@ -292,4 +292,8 @@ body{
min-height: 100vh;
display: grid;
grid-template-rows: auto 1fr auto;
}

.footer{
padding: 3rem 1.5rem 3rem;
}

0 comments on commit d6d4fe7

Please sign in to comment.