TenantAtlas/apps/platform/.pnpm-store/v10/files/ba/ea44ef7f419e38a3d5da6df1cb2c0869ea7c15b2d320776dc8d47fe566d2157bb57e29f04623ff04fb98f2ec1ad768482e60bed0cd43e7e9e08e6d103ea021
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

14 lines
295 B
Plaintext

import { Plugin } from 'vite';
type PluginOptions = {
/**
* Optimize and minify the output CSS.
*/
optimize?: boolean | {
minify?: boolean;
};
};
declare function tailwindcss(opts?: PluginOptions): Plugin[];
export { type PluginOptions, tailwindcss as default };