41 lines
1.0 KiB
TypeScript
41 lines
1.0 KiB
TypeScript
import {
|
|
defineConfig,
|
|
presetAttributify,
|
|
presetIcons,
|
|
presetTypography,
|
|
presetWind3,
|
|
transformerDirectives,
|
|
transformerVariantGroup,
|
|
} from 'unocss'
|
|
|
|
import { tools } from './app/data/food'
|
|
|
|
const safelist: string[] = ['text-left']
|
|
|
|
tools.forEach((item) => {
|
|
if (item.icon)
|
|
safelist.push(item.icon)
|
|
})
|
|
|
|
export default defineConfig({
|
|
shortcuts: [
|
|
['tag', 'text-sm cursor-pointer inline-flex justify-center items-center transition shadow hover:shadow-md'],
|
|
['pureTag', 'text-sm inline-flex justify-center items-center transition shadow'],
|
|
['btn', 'text-sm px-4 py-1 rounded inline-block bg-blue-600 text-white cursor-pointer hover:bg-blue-700 disabled:cursor-default disabled:bg-gray-600 disabled:opacity-50'],
|
|
],
|
|
presets: [
|
|
// wind4 :host style override bug, so use wind3
|
|
presetWind3(),
|
|
presetAttributify(),
|
|
presetIcons({
|
|
scale: 1.2,
|
|
}),
|
|
presetTypography(),
|
|
],
|
|
transformers: [
|
|
transformerDirectives(),
|
|
transformerVariantGroup(),
|
|
],
|
|
safelist,
|
|
})
|