0
Fork 0
mirror of https://github.com/penpot/penpot-plugins.git synced 2025-01-06 14:50:21 -05:00

fix: docs

This commit is contained in:
Juanfran 2024-05-30 09:33:05 +02:00
parent a055db406b
commit 6821d9f081
2 changed files with 6 additions and 2 deletions

View file

@ -17,7 +17,9 @@ Next, create a `manifest.json` file inside the `/src/assets` directory. This fil
```json
{
"name": "Example plugin",
"code": "http://localhost:4200/assets/plugin.js",
"host": "http://localhost:4200",
"code": "/assets/plugin.js",
"icon": "/assets/icon.png",
"permissions": ["page:read", "file:read", "selection:read"]
}
```

View file

@ -17,7 +17,9 @@ Next, create a `manifest.json` file inside the `/public` directory. This file is
```json
{
"name": "Example Plugin",
"code": "http://localhost:4201/plugin.js",
"host": "http://localhost:4201",
"code": "/plugin.js",
"icon": "/icon.png",
"permissions": ["page:read", "file:read", "selection:read"]
}
```