Open marcvangend opened 5 years ago
Today I installed the Contenta Vue Nuxt app, version 2.0.1, and the latest Contenta CMS demo site using the Quick Install method from https://www.contentacms.org/#install :
php -r "readfile('https://raw.githubusercontent.com/contentacms/contenta_jsonapi/8.x-2.x/installer.sh');" > contentacms-quick-installer.sh chmod a+x contentacms-quick-installer.sh ./contentacms-quick-installer.sh
Unfortunately, images do not work. I did find out that the code on line 18 of components/RecipeDetail.vue should not be
<img v-lazy="`${serverFilesUrl}/${recipe.image.thumbnail.url}`" />
but
<img v-lazy="`${serverFilesUrl}/${recipe.image.thumbnail.uri.url}`" />
I haven't found a fix for the other images yet.
I fixed most of the images. I'll create a merge request asap.
There you go: #53
Today I installed the Contenta Vue Nuxt app, version 2.0.1, and the latest Contenta CMS demo site using the Quick Install method from https://www.contentacms.org/#install :
Unfortunately, images do not work. I did find out that the code on line 18 of components/RecipeDetail.vue should not be
but
I haven't found a fix for the other images yet.