From e001ae87ff1eee33f1d60ab6d6141d6e7214ab64 Mon Sep 17 00:00:00 2001 From: Kevin Hoerr Date: Mon, 21 Nov 2022 22:06:11 -0500 Subject: Clean before build (#16) * Move main.css to Layout component * Add step to clean Gatsby before build --- src/components/Layout.tsx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/components') 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 }) => { -- cgit