Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: pnpm friendly #84

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
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: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ To install this plugin, you need to add an NPM dependency to your Strapi applica
# Using Yarn
yarn add @strapi/plugin-seo

# Or using PNPM
pnpm add @strapi/plugin-seo

# Or using NPM
npm install @strapi/plugin-seo
```
Expand All @@ -42,10 +45,10 @@ From any content manager view for a content-type that contains the SEO component

## Configuration

`./config/plugins.js`
`./config/plugins.ts`

```js
module.exports = ({ env }) => ({
```ts
export default () => ({
// ...
seo: {
enabled: true,
Expand All @@ -60,6 +63,9 @@ Then, you'll need to build your admin panel:
# Using Yarn
yarn build

# Or using PNPM
pnpm build

# Or using NPM
npm run build
```
Expand Down