Skip to content

Commit 8b006d8

Browse files
authored
docs: fix asset input path
Closes #12219
1 parent a5bb3ce commit 8b006d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/documentation/stories/asset-configuration.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The array below does the same as the default one:
2020
```json
2121
"assets": [
2222
{ "glob": "**/*", "input": "src/assets/", "output": "/assets/" },
23-
{ "glob": "favicon.ico", "input": "/src", "output": "/" },
23+
{ "glob": "favicon.ico", "input": "src/", "output": "/" },
2424
]
2525
```
2626

@@ -50,4 +50,4 @@ The contents of `node_modules/some-package/images/` will be available in `dist/s
5050
## Writing assets outside of `dist/`
5151

5252
Because of the security implications, the CLI will always refuse to write files outside of
53-
the project output path.
53+
the project output path.

0 commit comments

Comments
 (0)