mirror of
https://github.com/jellyfin/jellyfin-vue.git
synced 2024-12-02 19:16:40 +00:00
1c012c41a2
Add the uno- prefix to classes and fix IntelliSense Signed-off-by: Fernando Fernández <ferferga@hotmail.com>
11 lines
170 B
TypeScript
11 lines
170 B
TypeScript
import { defineConfig, presetUno } from 'unocss';
|
|
|
|
export default defineConfig({
|
|
presets: [
|
|
presetUno({
|
|
prefix: 'uno-',
|
|
preflight: false
|
|
})
|
|
]
|
|
});
|