본문 바로가기
IT일반/Strapi

strapi 이미지를 cloudinary로 무료로 올리기

by xavi2019 2022. 4. 8.

먼저 strapi의 노드 버전을 14로 실행해야 함.

 

cloudinary로 업로드하는 라이브러리 설치

https://github.com/strapi/strapi/tree/master/packages/providers/upload-cloudinary

 

GitHub - strapi/strapi: 🚀 Open source Node.js Headless CMS to easily build customisable APIs

🚀 Open source Node.js Headless CMS to easily build customisable APIs - GitHub - strapi/strapi: 🚀 Open source Node.js Headless CMS to easily build customisable APIs

github.com

 

# using yarn
yarn add @strapi/provider-upload-cloudinary

# using npm
npm install @strapi/provider-upload-cloudinary --save

 

환경설정파일에 추가 

 

./config/plugins.js

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: {},
      },
    },
  },
  // ...
});

'IT일반 > Strapi' 카테고리의 다른 글

strapi mysql을 heroku 에 배포해보기  (0) 2022.03.31
오라클 클라우드에 strapi 배포  (0) 2022.03.20
백엔드 strapi v4 도커로 생성  (0) 2022.03.17

댓글