Netlify Deploy Issue on Vue project

I need advice to debug deploy Netlify App

I had an issue like this specifically with form validation in Vue as well. The fix may very well be the same: I had to use this: Vue Client Only

Long story short, you’ll want to try wrapping your form and any validation code in the tags, but be sure to read over the setup instructions.

I hope this helps!

Hey @mrms501,

It looks like your project is missing the vuelidate dependency. If vuelidate is already in your package.json file, you may want to check that that dependency is filed under general dependencies and not devDependencies so your package.json would look something like this:

{
...
  "dependencies": {
    "vuelidate": "^0.7.5"
  },
  "devDependencies": { ... },
...
}

Hope this helps!
– Divya