mirror of
https://github.com/rancher/rancher-docs.git
synced 2026-04-05 09:42:56 +00:00
16 lines
342 B
JavaScript
16 lines
342 B
JavaScript
function tailwindPlugin(context, options) {
|
|
return {
|
|
name: 'tailwind-plugin',
|
|
configurePostCss(postcssOptions) {
|
|
postcssOptions.plugins = [
|
|
require('postcss-import'),
|
|
require('tailwindcss'),
|
|
require('autoprefixer'),
|
|
];
|
|
return postcssOptions;
|
|
},
|
|
};
|
|
}
|
|
|
|
module.exports = tailwindPlugin;
|