Adds a duplicate button to the edit view
npm install strapi-plugin-duplicate-button

Copy the following code and run from your terminal
```
#yarn
yarn add strapi-plugin-duplicate-button``
#pnpm
pnpm add strapi-plugin-duplicate-button``
#npm
npm install strapi-plugin-duplicate-button
The plugin should now be active and show the duplicate button.
file:`
'duplicate-button': true
`
Or if you do not have the plugins.js file yet, add the file with the following contents:
`
module.exports = () => ({
'duplicate-button': true,
});
``Please report any issues on GitHub.