From 0f638bd7961d4a97f1f104e3d48cbe285e43a18c Mon Sep 17 00:00:00 2001 From: Asher Gomez Date: Mon, 5 May 2025 10:49:22 +1000 Subject: [PATCH] chore(core): remove `tailwind_aot_error_page.tsx` --- src/server/tailwind_aot_error_page.tsx | 33 -------------------------- 1 file changed, 33 deletions(-) delete mode 100644 src/server/tailwind_aot_error_page.tsx diff --git a/src/server/tailwind_aot_error_page.tsx b/src/server/tailwind_aot_error_page.tsx deleted file mode 100644 index 420f7437e6e..00000000000 --- a/src/server/tailwind_aot_error_page.tsx +++ /dev/null @@ -1,33 +0,0 @@ -const LINK = "https://fresh.deno.dev/docs/concepts/ahead-of-time-builds"; - -export default function TailwindErrorPage() { - return ( -
-
-

Finish setting up Fresh

-

- The tailwindcss{" "} - plugin requires ahead of time builds to be set up for production - usage. To finish the setup, follow these steps: -

-
    -
  1. - Go to your project in Deno Deploy and click the{" "} - Settings tab. -
  2. -
  3. - In the Git Integration section, enter deno task build - {" "} - in the Build Command input. -
  4. -
  5. - Save the changes. -
  6. -
-

- See the detailed guide here: {LINK}. -

-
-
- ); -}