From 35e9b37d521d3083d5c12d1068678c9bb0d495fa Mon Sep 17 00:00:00 2001 From: Neko Ayaka Date: Wed, 27 Dec 2023 18:24:59 +0800 Subject: [PATCH] styles: fix unocss not imported, updated cSpell Signed-off-by: Neko Ayaka --- .vscode/settings.json | 3 ++- .../vitepress-plugin-highlight-targeted-heading/src/index.ts | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 1ff0baf5..8d6b48d5 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -4,7 +4,8 @@ "Attributify", "easytag", "emittypes", - "Logseq" + "Logseq", + "quotepath" ], "prettier.enable": false, "editor.formatOnSave": false, diff --git a/packages/vitepress-plugin-highlight-targeted-heading/src/index.ts b/packages/vitepress-plugin-highlight-targeted-heading/src/index.ts index 00d1855e..9a08e382 100644 --- a/packages/vitepress-plugin-highlight-targeted-heading/src/index.ts +++ b/packages/vitepress-plugin-highlight-targeted-heading/src/index.ts @@ -2,6 +2,8 @@ import type { Plugin } from 'vue' import NolebaseHighlightTargetedHeading from './components/HighlightTargetedHeading.vue' +import 'virtual:uno.css' + export { NolebaseHighlightTargetedHeading, }