From 8b9d845266fee8561e0d379d47e380037d1b31a1 Mon Sep 17 00:00:00 2001 From: Matthias Kretschmann Date: Wed, 27 Sep 2023 13:50:23 +0100 Subject: [PATCH] reduce install commands --- README.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/README.md b/README.md index 63a8d32..63d7713 100644 --- a/README.md +++ b/README.md @@ -42,12 +42,7 @@ The plugin is designed to work without configuration, especially if your project ```bash cd yourproject/ -# Using NPM npx astro add astro-redirect-from -# Using Yarn -yarn astro add astro-redirect-from -# Using PNPM -pnpm astro add astro-redirect-from ``` If installing manually: @@ -65,7 +60,7 @@ import redirectFrom from 'astro-redirect-from' export default defineConfig({ // ... integrations: [ - // make sure this is listed before any hosting integration + // make sure this is listed BEFORE any hosting integration redirectFrom() ] // ...