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/pages/404.tsx | 1 - src/pages/index.tsx | 1 - 2 files changed, 2 deletions(-) (limited to 'src/pages') diff --git a/src/pages/404.tsx b/src/pages/404.tsx index d8d27cb..6288f0c 100644 --- a/src/pages/404.tsx +++ b/src/pages/404.tsx @@ -1,7 +1,6 @@ import React from "react"; import { BlockLink, Layout } from "../components"; import { BlockBody, BlockHeader } from "../styles"; -import "../styles/main.css"; const NotFoundPage = (): React.ReactElement => { return ( diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 370a10d..10ba281 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -1,6 +1,5 @@ import React from "react"; import { StaticImage } from "gatsby-plugin-image"; -import "../styles/main.css"; import { FaGithub, FaMastodon } from "react-icons/fa"; import { BlockLink, Layout } from "../components"; import { BlockBody, BlockHeader } from "../styles"; -- cgit