strapi-plugin-cdn-prefix
v1.0.4
Published
Prepend image urls with CDN Prefix
Downloads
62
Maintainers
Readme
Strapi CDN Prefix Plugin
This Strapi plugin allows you to automatically prepend a CDN link to your image URLs on both Admin Panel and API's.
⚙️ Installation
# NPM
npm install strapi-plugin-cdn-prefix
# Yarn
yarn add strapi-plugin-cdn-prefix
🌐 Environment Configuration
For the plugin to work correctly, you need to add specific environment variables to your Strapi project. Add the following to your .env
file:
# .env
CDN_DOMAIN = cdn.example.com
CDN_IMAGES_BASE_PATH = https://cdn.example.com/images/uploads
🚀 Usage
Once the plugin is installed and configured:
- Upload a new image or use an existing one from the Media Library.
- The image URL will automatically have the CDN base path prepended.
For example, if the image's path is /uploads/image.jpg, the output will be https://cdn.example.com/images/uploads/image.jpg.