Irudiak erakusten ditu (#8)

* feat: atzealde irudia erakusten du

* feat: cloudinary sartzen du

* feat: kartela erakusten du

* chore: typescript errorea ekiditen du

* feat: irisgarritasuna hobetzen du

* feat: modalaren estiloa hobetzendu

* feat: og image aldatzen du
This commit is contained in:
Aitor Urrutia
2023-07-04 17:47:40 +02:00
committed by GitHub
parent de10cfc551
commit 2a48360784
12 changed files with 323 additions and 36 deletions

16
back/config/env/production/plugins.js vendored Normal file
View File

@@ -0,0 +1,16 @@
module.exports = ({ env }) => ({
upload: {
config: {
provider: "cloudinary",
providerOptions: {
cloud_name: env("CLOUDINARY_NAME"),
api_key: env("CLOUDINARY_KEY"),
api_secret: env("CLOUDINARY_SECRET"),
},
actionOptions: {
upload: {},
delete: {},
},
},
},
});