[Vuejs]-Errors on gh-pages – nuxt.js

1👍

  1. You need to deploy only the content of the dist folder not the folder itself
  2. You need to setup router base

nuxt.config.js

export default {
  router: {
    base: '/<repository-name>/'
  }
}

See docs

Leave a comment