We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Nuxt config:
export default { target: 'static',a buildModules: ['@nuxtjs/tailwindcss'], modules: ['@nuxt/image',], image: { providers: { cloudinary: { baseURL: 'https://res.cloudinary.com/milos5593/image/upload/', }, }, }, }
And then in the component:
<template> <header class="bg-black"> <div class="p-4 max-w-screen-xl"> <!-- Logo --> <nuxt-link class="font-bold text-lg text-white focus:outline-none focus:shadow-outline" to="/" > <nuxt-image class="w-56 h-auto" fit="contain" :placeholder="true" :src="'cloudinary:/crossroads_logo.png'" no-script /> </nuxt-link> </div> </header> </template> <script> export default { name: 'SiteHeader', } </script>
The text was updated successfully, but these errors were encountered:
Got the same issue today. Even though the full picture loaded, the blurred one was still in the background.
Sorry, something went wrong.
Could you try with latest version please?
Closing this - follow #189.
Successfully merging a pull request may close this issue.
Nuxt config:
And then in the component:
The text was updated successfully, but these errors were encountered: