mirror of
https://github.com/jellyfin/jellyfin-vue.git
synced 2025-06-08 23:30:37 +00:00
Also refactored styles to use UnoCSS and fixed some type issues Signed-off-by: Fernando Fernández <ferferga@hotmail.com>
16 lines
257 B
TypeScript
16 lines
257 B
TypeScript
import { defineConfig, presetUno } from 'unocss';
|
|
|
|
export default defineConfig({
|
|
presets: [
|
|
presetUno({
|
|
prefix: 'uno-',
|
|
preflight: false
|
|
})
|
|
],
|
|
theme: {
|
|
colors: {
|
|
background: 'rgb(var(--j-color-background))'
|
|
}
|
|
}
|
|
});
|