Skip to content

Commit

Permalink
fix: build.content type definition
Browse files Browse the repository at this point in the history
  • Loading branch information
cossssmin committed Jul 17, 2024
1 parent d128cd7 commit 98ab301
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions types/build.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@ export default interface BuildConfig {
components?: ComponentsConfig;

/**
* Directory where Maizzle should look for Templates to compile.
* Paths where Maizzle should look for Templates to compile.
*
* @default ['src/templates/**\/*.html']
*
* @example
* ```
* export default {
* build: {
* files: ['src/templates/**\/*.html']
* content: ['src/templates/**\/*.html']
* }
* }
* ```
*/
files?: string | string[];
content?: string | string[];

/**
* Define the output path for compiled Templates, and what file extension they should use.
Expand Down

0 comments on commit 98ab301

Please sign in to comment.