Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ Debug & verify the contents of your Netlify build cache

## Install

To install, add the following lines to your `netlify.toml` file, after any other plugins you may have added:
You can install this plugin in the Netlify UI from this [direct in-app installation link](https://app.netlify.com/plugins/netlify-plugin-debug-cache/install) or from the [Plugins directory](https://app.netlify.com/plugins).

To use file-based installation, add the following lines to your `netlify.toml` file, after any other plugins you may have added:

```toml
[[plugins]]
Expand All @@ -13,6 +15,14 @@ package = "netlify-plugin-debug-cache"

Note: The `[[plugins]]` line is required for each plugin, even if you have other plugins in your `netlify.toml` file already.

To complete file-based installation, from your project's base directory, use npm, yarn, or any other Node.js package manager to add this plugin to devDependencies in `package.json`.

```
npm install -D netlify-plugin-debug-cache
```

## Use

After the build is complete, download the built assets and inspect the cache manifest file.

In Netlify, you can download the build with this icon
Expand Down