jellyfin-vue/frontend/uno.config.ts
Fernando Fernández 1c012c41a2
fix(unocss): wrong styles
Add the uno- prefix to classes and fix IntelliSense

Signed-off-by: Fernando Fernández <ferferga@hotmail.com>
2024-04-12 01:17:55 +02:00

11 lines
170 B
TypeScript

import { defineConfig, presetUno } from 'unocss';
export default defineConfig({
presets: [
presetUno({
prefix: 'uno-',
preflight: false
})
]
});