Skip to content

Commit 118de6c

Browse files
MihkelAuvyufeih
authored andcommitted
Fix resource configuration property (#9394)
1 parent 763f66c commit 118de6c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/reference/docfx-json-reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Specifies an array of resource files to include in the project. Supports [File M
4545
```json
4646
{
4747
"build": {
48-
"resources": ["**/*.png"]
48+
"resource": ["**/*.png"]
4949
}
5050
}
5151
```

src/docfx/Models/InitCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ This utility will walk you through creating a docfx project.
5050
{
5151
new { files = new[] { "**/*.{md,yml}" }, exclude = new[] { "_site/**" } }
5252
},
53-
resources = new[]
53+
resource = new[]
5454
{
5555
new { files = new[] { "images/**" } }
5656
},

0 commit comments

Comments
 (0)