79194454

Date: 2024-11-16 03:18:02
Score: 0.5
Natty:
Report link
  1. According to your package.json, you need to run npm run predeploy before npm run deploy.
  2. By default, Vite output dir is dist, not build. Modify package.json:
    -    "deploy": "gh-pages -d build",
    +    "deploy": "gh-pages -d dist",
    
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: typed-sigterm