From 94e0e4f55ec56cbe1da7fc58d949efc6e73abc93 Mon Sep 17 00:00:00 2001 From: Kieran Klukas <92754843+kcoderhtml@users.noreply.github.com> Date: Mon, 11 Dec 2023 12:59:54 -0500 Subject: [PATCH 1/2] bug: fix 404 page --- src/pages/{404.html => 404.astro} | 3 +++ 1 file changed, 3 insertions(+) rename src/pages/{404.html => 404.astro} (98%) diff --git a/src/pages/404.html b/src/pages/404.astro similarity index 98% rename from src/pages/404.html rename to src/pages/404.astro index 40c9925..c5dae0e 100644 --- a/src/pages/404.html +++ b/src/pages/404.astro @@ -1,3 +1,6 @@ +--- +import '../styles/404.css' +--- From c0fe9046e480311f8cb61502d7050f906f294fd7 Mon Sep 17 00:00:00 2001 From: Kieran Klukas <92754843+kcoderhtml@users.noreply.github.com> Date: Mon, 11 Dec 2023 13:00:18 -0500 Subject: [PATCH 2/2] feat: add dev setting to netlify.toml --- netlify.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/netlify.toml b/netlify.toml index 86e0391..7c2e06e 100644 --- a/netlify.toml +++ b/netlify.toml @@ -1,3 +1,6 @@ +[dev] + command = "npm run dev" + [build] command = "npm run build" publish = "dist" \ No newline at end of file