From f1f383d4cc62d338afc04bcad76a694e2c263e85 Mon Sep 17 00:00:00 2001 From: reslear Date: Mon, 14 Oct 2024 17:30:08 +0200 Subject: [PATCH 1/2] Update README.md because officially support https://docs.strapi.io/dev-docs/installation/cli also i'm tested, works well --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 02247be..4615115 100644 --- a/README.md +++ b/README.md @@ -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 ``` From f3c28285ec058f3900b63346c908388857d72509 Mon Sep 17 00:00:00 2001 From: reslear Date: Mon, 14 Oct 2024 17:33:11 +0200 Subject: [PATCH 2/2] Update README.md --- README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4615115..4d638fb 100644 --- a/README.md +++ b/README.md @@ -45,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, @@ -63,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 ```