Files
tyass-admin/playground/postcss.config.mjs

12 lines
275 B
JavaScript
Raw Normal View History

2026-02-27 12:29:13 +08:00
import config from '@vben/tailwind-config';
export default {
plugins: {
autoprefixer: {},
'postcss-antd-fixes': { prefixes: ['ant', 'el'] },
'postcss-import': {},
'postcss-preset-env': {},
tailwindcss: { config },
'tailwindcss/nesting': {},
},
};