From a336fb31306f1c150e19463d5e914b900f6426a8 Mon Sep 17 00:00:00 2001 From: William Sedlacek Date: Thu, 18 May 2023 05:47:29 -0700 Subject: [PATCH] docs: fix typo (#2359) --- docs/guide/asset-handling.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/asset-handling.md b/docs/guide/asset-handling.md index c914bf31..d8260687 100644 --- a/docs/guide/asset-handling.md +++ b/docs/guide/asset-handling.md @@ -18,7 +18,7 @@ All **static** path references, including absolute paths, should be based on you ## The Public Directory -Sometimes you may need to provide static assets that are not directly referenced in any of your Markdown or theme components, or you may want to serve certain files with the original filename. Examples of such files include `robot.txt`, favicons, and PWA icons. +Sometimes you may need to provide static assets that are not directly referenced in any of your Markdown or theme components, or you may want to serve certain files with the original filename. Examples of such files include `robots.txt`, favicons, and PWA icons. You can place these files in the `public` directory under the [source directory](./routing#source-directory). For example, if your project root is `./docs` and using default source directory location, then your public directory will be `./docs/public`.