[Vuejs]-NuxtJS and Custom JS file

0👍

You can add custom script in nuxt.config.js file, and add in head section like below:

  /*
   ** Headers of the page
   */
  head: {
    script: [
      { src: 'https://cdn.jsdelivr.net/npm/vue/dist/vue.js', async: true, defer: true }
    ],
  },

Leave a comment