netlify.toml 657 B

12345678910111213141516
  1. # Netlify deploy configuration for adminlte-v4.netlify.app
  2. #
  3. # The dist/ folder is committed to the repo (see "rebuild dist" commits),
  4. # so the production deploy just publishes those static files. This avoids
  5. # running npm install on Netlify, which has been failing since rc7 due to
  6. # a Node version drift between Netlify's default and the Node 22 used in
  7. # CI (see .github/workflows/*).
  8. [build]
  9. publish = "dist"
  10. command = "echo 'Static deploy of committed dist/'"
  11. [build.environment]
  12. # Match the Node version used in GitHub Actions so any future build
  13. # command (eg. `npm run docs-compile`) resolves dependencies correctly.
  14. NODE_VERSION = "22"