-1

git clone https://github.com/ionic-team/stencil-starter.git cl-gallery

followed the instruction on
https://cloudinary.com/blog/cloudinary_image_gallery_with_stencil_custom_components

and getting an error message :

cannot find module cloudinary-core and ../../db

enter image description here

Siong Thye Goh
  • 3,518
  • 10
  • 23
  • 31
Helmar Bachle
  • 49
  • 1
  • 1
  • 9

1 Answers1

1

That blog post doesn't mention that you need to install the cloudinary-core package:

npm install cloudinary-core

The error with the db module is because of a wrong path. Use ../db instead.

Thomas
  • 8,426
  • 1
  • 25
  • 49
  • changed the path and that helped, but npm install cloudinary-core is required otherwise it would give me another error for the import of cloudinary. – Helmar Bachle Aug 28 '19 at 06:20