Render multiple Custom Plugins in strapi

Hello all
I want to create more than one custom plugin in my project. When I render two custom plugins, the project only renders the plugin that was imported at the end of the file.
I have created plugins using this command → npx create-strapi-app@latest your-project-name

Can someone please provide any way to render multiple custom plugins in my project?

The below code is written in the config/plugin.js file in which I have imported my plugins
"search-dropdown": { enabled: true, resolve: "./src/plugins/search-dropdown", }, "image-plugin": { enabled: true, resolve: "./src/plugins/image-plugin", },

This topic has been created from a Discord post (1276044729305399307) to give it more visibility.
It will be on Read-Only mode here.
Join the conversation on Discord

Hi ! :wave:

This command is not use for plugin creation but for Strapi applicaiton creation
npx create-strapi-app@latest your-project-name

If you want to create a plugin inside your pre created Strapi project, you can use this command instead :
npm run strapi generate plugin and then enable the plugin in the config/plugins.js|ts file

You can follow this doc : Plugin creation & setup | Strapi Documentation

Repeat the process for other plugins and they should appear in your admin panel’s sidebar :+1:

Hello!!

Thanks for the response

I have created plugin using the same command which you have provided but still not able to run two custom plugins at the same time!

I am rendering the plugins in content builder from as a field!