mirror of
https://github.com/moeru-ai/airi.git
synced 2026-05-19 08:10:45 +00:00
26 lines
590 B
TypeScript
26 lines
590 B
TypeScript
import { mergeConfigs, presetWebFonts } from 'unocss'
|
|
|
|
import { presetWebFontsFonts, sharedUnoConfig } from '../../uno.config'
|
|
|
|
export default mergeConfigs([
|
|
sharedUnoConfig(),
|
|
{
|
|
presets: [
|
|
presetWebFonts({
|
|
fonts: {
|
|
...presetWebFontsFonts('fontsource'),
|
|
},
|
|
timeouts: {
|
|
warning: 5000,
|
|
failure: 10000,
|
|
},
|
|
}),
|
|
],
|
|
rules: [
|
|
['transition-colors-none', {
|
|
'transition-property': 'color, background-color, border-color, text-color',
|
|
'transition-duration': '0s',
|
|
}],
|
|
],
|
|
},
|
|
])
|