@greenwood/plugin-postcss
Version:
A Greenwood plugin for loading PostCSS configuration and applying it to your CSS.
12 lines (8 loc) • 304 B
TypeScript
import type { ResourcePlugin } from "@greenwood/cli";
type PostCssPluginOptions = {
extendConfig?: boolean;
};
export type PostCssPlugin = (options?: PostCssPluginOptions) => Array<ResourcePlugin>;
declare module "@greenwood/plugin-postcss" {
export const greenwoodPluginPostCss: PostCssPlugin;
}