docs: add overview of .jekyll-cache dir (#8648)
Merge pull request 8648
This commit is contained in:
parent
60e01d3671
commit
2e65d6d3a9
|
@ -25,6 +25,10 @@ A basic Jekyll site usually looks something like this:
|
|||
│ ├── _base.scss
|
||||
│ └── _layout.scss
|
||||
├── _site
|
||||
├── .jekyll-cache
|
||||
│ └── Jekyll
|
||||
│ └── Cache
|
||||
│ └── [...]
|
||||
├── .jekyll-metadata
|
||||
└── index.html # can also be an 'index.md' with valid front matter
|
||||
```
|
||||
|
@ -160,6 +164,22 @@ An overview of what each of these does:
|
|||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p><code>.jekyll-cache</code></p>
|
||||
</td>
|
||||
<td>
|
||||
<p>
|
||||
Keeps a copy of the generated pages and markup (e.g.: markdown) for
|
||||
faster serving. Created when using e.g.: <code>jekyll serve</code>.
|
||||
Can be disabled with
|
||||
<a href="/docs/configuration/options/">an option and/or flag</a>.
|
||||
This directory will not be included in the generated site. It’s
|
||||
probably a good idea to add this to your <code>.gitignore</code>
|
||||
file.
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p><code>.jekyll-metadata</code></p>
|
||||
|
|
Loading…
Reference in New Issue