mirror of
https://github.com/HKUDS/AutoAgent
synced 2026-04-21 15:47:56 +00:00
13 lines
323 B
JavaScript
13 lines
323 B
JavaScript
export default function tailwindPlugin(context, options) {
|
|
return {
|
|
name: 'tailwind-plugin',
|
|
configurePostCss(postcssOptions) {
|
|
postcssOptions.plugins = [
|
|
require('postcss-import'),
|
|
require('tailwindcss'),
|
|
require('autoprefixer'),
|
|
];
|
|
return postcssOptions;
|
|
},
|
|
};
|
|
}
|