

{data.name}
{@html data.description}
h
When the page is sus
\ No newline at end of file diff --git a/unocss.config.ts b/unocss.config.ts index f24c39b..0479810 100644 --- a/unocss.config.ts +++ b/unocss.config.ts @@ -23,6 +23,7 @@ export default defineConfig({ }), presetWind({ dark: "class" + /* use dark: "class" when adding manual JS*/ }) ], diff --git a/vite.config.ts b/vite.config.ts index 83680a9..cd19efd 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -4,17 +4,8 @@ import UnoCSS from 'unocss/vite'; import presetIcons from '@unocss/preset-icons'; const config: UserConfig = { - plugins: [sveltekit(), UnoCSS( - { - shortcuts: { - // Shortcuts go here: Format: " class : "unocss" " - sm: "640px" - }, - rules : [ - ['m-1', {margin : '0.25 em' }], - ] - } - ), + plugins: [sveltekit(), UnoCSS(), + /* Self note: Don't add a config between the (), it just overrides the external config. */ ] };