aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/components
diff options
context:
space:
mode:
authorKevin Hoerr <kjhoerr@protonmail.com>2022-11-21 22:06:11 -0500
committerGitHub <noreply@github.com>2022-11-21 22:06:11 -0500
commite001ae87ff1eee33f1d60ab6d6141d6e7214ab64 (patch)
tree31629306fbfbce3ee86a11407ca3fcbb3bf0ea6f /src/components
parent5eb011ca3378eb4e18592387178d4174fed2e0a8 (diff)
downloadsubmelon.dev-e001ae87ff1eee33f1d60ab6d6141d6e7214ab64.tar.gz
submelon.dev-e001ae87ff1eee33f1d60ab6d6141d6e7214ab64.tar.bz2
submelon.dev-e001ae87ff1eee33f1d60ab6d6141d6e7214ab64.zip
Clean before build (#16)
* Move main.css to Layout component * Add step to clean Gatsby before build
Diffstat (limited to 'src/components')
-rw-r--r--src/components/Layout.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index 6cc70ed..7be816f 100644
--- a/src/components/Layout.tsx
+++ b/src/components/Layout.tsx
@@ -4,6 +4,8 @@ import { Content, Footer } from "../styles";
import package_json from "../../package.json";
import { getTimestamp } from "../util/timestamp";
+import "../styles/main.css";
+
const VERSION = package_json.version;
const Layout = ({ children }) => {