How to deploy SSR Nuxt app to Plesk web server?
I am completely a noob to Nuxt.js. I have created a nuxt.js app without any custom server such as express. I would like to upload to my web server Plesk Onyx. How do I do this? I read few different…
I am completely a noob to Nuxt.js. I have created a nuxt.js app without any custom server such as express. I would like to upload to my web server Plesk Onyx. How do I do this? I read few different…
So I'm currently implementing sitemaps for a website that features multiple store fronts. I used nuxt sitemap module to generate a /sitemap/sitemap.xml file for the static pages, like homepage, terms and conditions and privacy policy. Now the website also contains…
Because of fibers error on cPanel/CentOS/Cloudlinux servers, I'm using v2.0.0-beta.2 of @nuxtjs/vuetify in my Nuxt app. But npm returns error on build or dev running. No problem with v1.11.2, but the alpha and beta versions have error. ✖ Nuxt Fatal…
I am currently working on a NUXT application where there is a necessity to add some dynamic content inside <head> section of selected pages. The content that needs to get inserted into the pages <head> comes from a one time…
I built a news website using vuejs and for SEO and performance reasons i would like to utilize SSR(Server side rendering) using nuxt, I could find many resources in writing a new nuxt app but nothing on converting an existing…
Im a novice in NuxtJS. My page is structured with a navbar/menu, blog page with all articles listed and a couple of mostly static pages.(like most company websites) I am retrieving my data from a Strapi API, where I can…
I am trying to understand why the correct title and meta tags do not display when I click "View Page Source". What does display are the meta tag information from my nuxt.config.js file. How do I get the meta data…
I have a card where for a demand on SEO i need to put the nuxt link on the title but the whole card must be clickable with a method : <template> <div @click.prevent="clickit(item)" > <img class="background" :src="item.backgroundImage" /> <nuxt-link…
There is such a vue method: methods: { sendTrackerClientData () { return axios.post("https://seo-gmbh.eu/couriertracker/json/couriertracker_api.php?action=tracking.data_save&key_id=00227220201402050613" , { tracking_data: 'some data' }) .then(response => { console.log('post method is working!'); }) .catch(function (error) { console.log(error); }); }, } Which is hung on a button…
I have a Nuxt project and for the SEO purpose, I need to reload the pages every time I do visit any page. Is there any way I can do it on Routers? Currently, my app is with the default…