netlify.toml 221 B

123456789101112
  1. [build]
  2. command = "npm install && npx vite build --config vite.config.prod.ts"
  3. publish = "dist"
  4. [build.environment]
  5. NODE_VERSION = "18"
  6. CI = "true"
  7. [[redirects]]
  8. from = "/*"
  9. to = "/index.html"
  10. status = 200