From b979b529789edf5f4ba90927bec1a60453ad5d92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=98=99=E2=97=A6=20The=20Tablet=20=E2=9D=80=20GamerGirla?= =?UTF-8?q?ndCo=20=E2=97=A6=E2=9D=A7?= Date: Sat, 9 Dec 2023 17:18:48 -0500 Subject: [PATCH] fix(plugins): remove ssr style it breaks shit. not cool. --- plugins/ssrStyles.tsx | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 plugins/ssrStyles.tsx diff --git a/plugins/ssrStyles.tsx b/plugins/ssrStyles.tsx deleted file mode 100644 index 09c0827..0000000 --- a/plugins/ssrStyles.tsx +++ /dev/null @@ -1,42 +0,0 @@ -import { writeFileSync } from "fs"; -import { extractStyle } from "ant-design-vue/lib/_util/static-style-extract"; -import { ConfigProvider, theme } from "ant-design-vue"; - -const css = extractStyle((node) => ( - <> - - {node} - - - {node} - - -)); - -export default defineNitroPlugin((nitro) => { - nitro.hooks.hook("render:html", (html) => { - html.head.push(``); - }); -});