Netlify
Inferred Example - Netlify is not explicitly referenced in the Shevky codebase. This guide is a generic pattern for static site deployment.
Configuration
Create netlify.toml in your project root:
[build]
command = "npm run build"
publish = "dist"
[build.environment]
NODE_VERSION = "20"Steps
- Push your project to a Git repository.
- Connect the repository to Netlify.
- Netlify runs
npm run buildand publishesdist/.
Tips
- Set
identity.urlto your Netlify URL or custom domain before building. - Netlify automatically handles routing for static sites.