Co-authored-by: Neko Ayaka <neko@ayaka.moe> Co-authored-by: Makito <5277268+sumimakito@users.noreply.github.com>
17 lines
382 B
TypeScript
17 lines
382 B
TypeScript
import { mergeConfigs } from 'unocss'
|
|
|
|
import { histoireUnoConfig, sharedUnoConfig } from '../../uno.config'
|
|
|
|
export default mergeConfigs([
|
|
sharedUnoConfig(),
|
|
histoireUnoConfig(),
|
|
{
|
|
rules: [
|
|
['transition-colors-none', {
|
|
'transition-property': 'color, background-color, border-color, text-color',
|
|
'transition-duration': '0s',
|
|
}],
|
|
],
|
|
},
|
|
])
|