Files
simrsx-fe/uno.config.ts
Khafid Prayoga 04b87733d5 build: add vscode launch config and tailwind config
Add launch configuration for Chrome debugging in VSCode and set up TailwindCSS configuration with animations and theme customization
2025-08-26 17:05:08 +07:00

34 lines
680 B
TypeScript

import { defineConfig, presetAttributify, presetIcons, presetWind } from 'unocss'
export default defineConfig({
presets: [
presetWind(), // This is the Tailwind-compatible preset
presetAttributify(),
presetIcons(),
],
theme: {
container: {
center: true,
padding: '2rem',
screens: {
'2xl': '1400px',
},
},
extend: {
colors: {},
borderRadius: {
lg: 'var(--radius)',
md: 'calc(var(--radius) - 2px)',
sm: 'calc(var(--radius) - 4px)',
},
},
},
shortcuts: [
// Add any custom shortcuts if needed
],
rules: [
// Custom rules if needed
],
inspector: true,
})