MinIO is a storage service that allows you to create buckets and upload objects, like files, and media to a storage solution.
npm install @hyper63/adapter-minioMinIO is a storage service that allows you to create
buckets and upload objects, like files, and media to
a storage solution.
``sh`
npm install @hyper63/adapter-minio
`js
const minio = require("@hyper63/adapter-minio");
module.exports = {
adapter: [
{
port: "storage",
plugins: [minio({ url: "http://[user]:[password]/minio:9000" })],
},
],
};
``