Skip to content

Commit

Permalink
docs(eleventy-config): PostCss Plugin Options document
Browse files Browse the repository at this point in the history
  • Loading branch information
arashagp committed Jan 23, 2025
1 parent 012915f commit a096fa4
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions packages/eleventy-config/src/lib/postcss.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,18 @@ export async function postcssBuild(options: {inputDir: string, outputDir: string
logger.logOther?.(`PostCSS build done in ${calculatedTime}ms`);
}

/**
* Options for the eleventyMinifyHtmlPlugin.
*/
type EleventyPostCssPluginOptions = {
/**
* The Css Input Directory.
*/
inputDir: string;

/**
* The Css Output Directory.
*/
outputDir: string;
};

Expand Down

0 comments on commit a096fa4

Please sign in to comment.