Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 565 Bytes

issues.md

File metadata and controls

31 lines (25 loc) · 565 Bytes

Strapi


  • Blank page on /admin
    • if first time, then npm run build
    • verify NGINX config
    • Have a try with the IP instead of DNS
    • ECONNRESET: could be no more space on disk

VueJS


  • scroll issue
    • vue 2: "selector"
    • vue 3: "el"
scrollBehavior(to, from, savedPosition) {
  if (savedPosition) {
    return savedPosition
  } else if (to.hash) {
    return { el: to.hash, behavior: 'smooth' } // , offset: { x: 0, y: 10 } }
  } else {
    return { x: 0, y: 0 }
  }
}