photo-plus
v1.0.2
Published
The photo-plus allows you to take pictures using your camera and download them to the folder on your local machine.
Downloads
6
Readme
Strapi plugin photo-plus
The photo-plus allows you to take pictures using your camera and download them to the folder on your local machine.
photo-plus
The photo-plus plugin allows Strapi users to take and download photos to their local folders using the browser's camera.
Installation
To install this plugin, you need to add an NPM dependency to your Strapi application:
# yarn
yarn add strapi-plugin-photo-plus
# npm
npm install strapi-plugin-photo-plus
Then, you'll need to build your admin panel:
# Using Yarn
yarn build
# Or using NPM
npm run build
Configuration
./config/plugins.js
module.exports = ({ env }) => ({
// ...
photo-plus: {
enabled: true,
},
// ...
});